Skip to content

Commit

Permalink
fix: fix lint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahgm committed Jan 31, 2023
1 parent a69df88 commit 56cbcaf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/components/src/Overlay/Overlay.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { forwardRef } from 'react';
import { OverlayProvider } from '@react-aria/overlays';
import { useObjectRef } from '@react-aria/utils';
import { useOverlayTriggerState } from '@react-stately/overlays';
import { ComponentStory } from '@storybook/react';
import { ComponentStory, Meta } from '@storybook/react';
import { Tray } from './Tray';
import { Menu } from '../Menu';
import { Dialog } from '../Dialog';
Expand All @@ -12,7 +12,8 @@ import { Text } from '../Text';

export default {
title: 'Components/Overlay',
};
} as Meta;

const TestTray = forwardRef<HTMLDivElement, { open: boolean }>(
({ open }, ref) => {
const trayRef = useObjectRef(ref);
Expand Down

0 comments on commit 56cbcaf

Please sign in to comment.