SavedQueries: Fix closeDrawer type (#111403)

This commit is contained in:
Juan Cabanas
2025-09-23 14:33:37 -03:00
committed by GitHub
parent 8f77a3e0e8
commit 8ecb389c96
@@ -30,7 +30,7 @@ export type QueryLibraryContextType = {
* @param newQuery New query to be added to the library.
*/
openDrawer: (options: QueryLibraryDrawerOptions) => void;
closeDrawer: () => void;
closeDrawer: (isSelectingQuery?: boolean, isEditingQuery?: boolean) => void;
isDrawerOpen: boolean;
onSave?: () => void;