Skip to content

Commit

Permalink
- fix: added missing boolean declaration (#490)
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol authored Oct 11, 2024
1 parent b503728 commit de5e7eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/shinkai-desktop/src/pages/sheet-dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
},
Expand Down

0 comments on commit de5e7eb

Please sign in to comment.