Skip to content

Commit

Permalink
fixup! Fix(web-react): FileUploaderInput className #DS-1508
Browse files Browse the repository at this point in the history
  • Loading branch information
curdaj committed Oct 17, 2024
1 parent b743379 commit aaeb783
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/next-with-app-router/src/app/fileuploader.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use client';

import React, { useState } from 'react';
import {
FileUploader,
FileUploaderAttachment,
Expand All @@ -9,6 +8,7 @@ import {
SpiritFileUploaderAttachmentProps,
useFileQueue,
} from '@lmc-eu/spirit-web-react';
import React, { useState } from 'react';

const FileuploaderTest = () => {
const [errorMessage, setErrorMessage] = useState<(string | Error)[]>([]);
Expand Down
2 changes: 1 addition & 1 deletion examples/next-with-app-router/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NextPage } from 'next';
import FileuploaderTest from '@/app/fileuploader';
import { NextPage } from 'next';

const Home: NextPage = () => <FileuploaderTest />;

Expand Down

0 comments on commit aaeb783

Please sign in to comment.