Skip to content

Commit

Permalink
fix(import): build and remove completed from list
Browse files Browse the repository at this point in the history
  • Loading branch information
stijnvdkolk committed Jan 29, 2024
1 parent 226c8f0 commit fc7d3a9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pages/import.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use client';

/* eslint-disable no-continue */
import { Container } from '@/components/Container';
import { Divider } from '@/components/Divider';
Expand Down Expand Up @@ -185,6 +187,9 @@ const ImportPage: NextPage<Props> = () => {

setRefetchCounter(new Date());
setIsUploading(false);
setUploadedFiles((oldList) =>
oldList.filter((x) => x.status !== UploadedFilesStatus.Uploaded)
);
};

const [importService, setImportService] = useState<ImportService>(
Expand Down

0 comments on commit fc7d3a9

Please sign in to comment.