Skip to content

Commit

Permalink
fix: [FE] LoadButton refetch에 await가 없어 제대로 모달이 렌더링되지 않던 문제 해결
Browse files Browse the repository at this point in the history
LoadButton refetch에 await가 없어 제대로 모달이 렌더링되지 않던 문제 해결
(#140)
  • Loading branch information
d0422 committed Nov 27, 2023
1 parent 5cf5dbf commit 6c434a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontEnd/src/components/room/editor/LoadButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default function LoadButton({
};

const handleLoadCloudCodeFile = async () => {
refetch();
await refetch();
setClick(true);
};
return (
Expand Down

0 comments on commit 6c434a6

Please sign in to comment.