Skip to content

Commit

Permalink
fix: remove debug story
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-a-young committed Jan 10, 2025
1 parent 036e91c commit 091c909
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions packages/file-selector/src/lib/FileSelector.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
import { Paper } from '@availity/mui-paper';

import { FileSelector, FileSelectorProps } from './FileSelector';
import { FileList, FileListProps } from './FileList';

const meta: Meta<typeof FileSelector> = {
title: 'Components/File Selector/File Selector',
Expand Down Expand Up @@ -49,23 +48,3 @@ export const _FileSelector: StoryObj<typeof FileSelector> = {
multiple: true,
},
};

const mockFile = new File(['file content'], 'mock.txt', { type: 'text/plain' });

export const _FileList: StoryObj<typeof FileList> = {
render: (props: FileListProps) => {
return (
<FileList
files={[mockFile]}
onRemoveFile={() => {
console.log('removed');
}}
options={{
bucketId: '123',
customerId: '123',
clientId: '123',
}}
/>
);
},
};

0 comments on commit 091c909

Please sign in to comment.