Merge pull request #303 from buster-so/nate/fix-broken-save-sql-button

fix broken save sql button
This commit is contained in:
Nate Kelley 2025-05-09 13:36:14 -06:00 committed by GitHub
commit d0a5c6e78f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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