Skip to content

Commit

Permalink
Rename ExportButton ExportForm
Browse files Browse the repository at this point in the history
  • Loading branch information
philmcmahon committed Jan 8, 2025
1 parent da5d14c commit 5e79b7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/client/src/app/export/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
'use client';
import React from 'react';
import ExportButton from '@/components/ExportButton';
import ExportForm from '@/components/ExportForm';

const Export = () => {
return (
<div>
<ExportButton />
<ExportForm />
</div>
);
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const makeFileLinks = (
return links;
};

const ExportButton = () => {
const ExportForm = () => {
const { token } = useContext(AuthContext);
const searchParams = useSearchParams();
const [folderId, setFolderId] = useState<string | undefined>();
Expand Down Expand Up @@ -296,4 +296,4 @@ const ExportButton = () => {
);
};

export default ExportButton;
export default ExportForm;

0 comments on commit 5e79b7d

Please sign in to comment.