Skip to content

Commit

Permalink
Fix type error in upload-form.
Browse files Browse the repository at this point in the history
  • Loading branch information
allilevine committed Dec 16, 2024
1 parent f3c77ba commit 69e38b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default function SubscriberUploadForm( { nextStepUrl, siteId, skipNextSte
const onSubmit = useCallback(
async ( event: FormEvent< HTMLFormElement > ) => {
event.preventDefault();
selectedFile && importCsvSubscribers( siteId, selectedFile, [], true );
selectedFile && importCsvSubscribers( siteId, selectedFile, [], [], true );
},
[ selectedFile, importCsvSubscribers, siteId ]
);
Expand Down

0 comments on commit 69e38b3

Please sign in to comment.