fix broken save sql button

This commit is contained in:
Nate Kelley 2025-05-09 13:35:46 -06:00
parent ea0e1f84ac
commit e99df7cd9d
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 10 additions and 1 deletions

View File

@ -86,7 +86,16 @@ export const SQLContainer: React.FC<{
</div>
</>
);
}, [disabledSave, isRunning, onCopySQL, onRunQueryPreflight, onSaveSQL, sql]);
}, [
disabledSave,
isRunning,
onCopySQL,
onRunQueryPreflight,
onSaveSQL,
sql,
isSaving,
onSaveSQLPreflight
]);
return (
<FileCard