From 0faab8257103080260b4569474ab16ed067d6925 Mon Sep 17 00:00:00 2001 From: Alfredo Gallardo Date: Thu, 10 Oct 2024 21:10:47 -0300 Subject: [PATCH] - fix: added missing boolean declaration --- apps/shinkai-desktop/src/pages/sheet-dashboard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/shinkai-desktop/src/pages/sheet-dashboard.tsx b/apps/shinkai-desktop/src/pages/sheet-dashboard.tsx index 507ec1977..e290fe2b9 100644 --- a/apps/shinkai-desktop/src/pages/sheet-dashboard.tsx +++ b/apps/shinkai-desktop/src/pages/sheet-dashboard.tsx @@ -297,7 +297,7 @@ function ImportSheetModal() { const navigate = useNavigate(); - const { mutateAsync: importSheet } = useImportSheet({ + const { mutateAsync: importSheet, isPending: isPendingImportSheet } = useImportSheet({ onSuccess: (data) => { navigate(`/sheets/${data.sheet_id}`); },