Skip to content

Commit

Permalink
コンパイルエラーを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
o-tr committed Aug 28, 2024
1 parent bb3ee62 commit 7256961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/(_)/files/[fileId]/_components/Reset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const Reset: FC = () => {
const setFiles = useSetAtom(SelectedFilesAtom);

useEffect(() => {
setResult([]);
setResult(undefined);
setFiles([]);
}, [setResult, setFiles]);
return <></>;
Expand Down

0 comments on commit 7256961

Please sign in to comment.