From f92d62e4c398f711055d578e47cf4314fbc2585d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=ED=98=84=EC=A1=B0?= Date: Tue, 8 Oct 2024 13:50:23 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=EC=BB=A8=ED=85=8D=EC=8A=A4=ED=8A=B8=20?= =?UTF-8?q?=EB=A9=94=EB=89=B4=20=EC=BF=BC=EB=A6=AC=ED=82=A4=20=EC=B4=88?= =?UTF-8?q?=EA=B8=B0=ED=99=94=20=EA=B4=80=EB=A0=A8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WorkspaceSidebar/ProjectContextMenu.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/WorkspaceSidebar/ProjectContextMenu.tsx b/frontend/src/components/WorkspaceSidebar/ProjectContextMenu.tsx index a8d95ce..45b9215 100644 --- a/frontend/src/components/WorkspaceSidebar/ProjectContextMenu.tsx +++ b/frontend/src/components/WorkspaceSidebar/ProjectContextMenu.tsx @@ -87,8 +87,7 @@ export default function ProjectContextMenu({ projectId, folderId, node, onRefetc }, { onSuccess: () => { - queryClient.invalidateQueries({ queryKey: ['folder', projectId, folderId] }); - queryClient.invalidateQueries({ queryKey: ['folder', projectId, node.id] }); + queryClient.invalidateQueries({ queryKey: ['folder'] }); onRefetch(); }, } @@ -102,7 +101,7 @@ export default function ProjectContextMenu({ projectId, folderId, node, onRefetc { projectId, folderId: node.id, memberId }, { onSuccess: () => { - queryClient.invalidateQueries({ queryKey: ['folder', projectId] }); + queryClient.invalidateQueries({ queryKey: ['folder'] }); onRefetch(); }, } @@ -112,8 +111,8 @@ export default function ProjectContextMenu({ projectId, folderId, node, onRefetc { projectId, folderId, imageId: node.id }, { onSuccess: () => { - queryClient.invalidateQueries({ queryKey: ['folder', projectId] }); - queryClient.invalidateQueries({ queryKey: ['image', node.id] }); + queryClient.invalidateQueries({ queryKey: ['folder'] }); + queryClient.invalidateQueries({ queryKey: ['image'] }); onRefetch(); }, } @@ -132,7 +131,7 @@ export default function ProjectContextMenu({ projectId, folderId, node, onRefetc { onSuccess: () => { console.log(folderId, node?.id); - queryClient.invalidateQueries({ queryKey: ['folder', projectId] }); + queryClient.invalidateQueries({ queryKey: ['folder'] }); onRefetch(); },