Fix: Initialize asyncQueryRuns in the state to avoid accessing undefined entity (#13300)

This commit is contained in:
Devanshu Rastogi 2025-07-10 10:32:21 +05:30 committed by GitHub
parent 9acdd05611
commit 11d04391f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -34,6 +34,7 @@ const initialState = {
showDeleteConfirmation: false,
renamingQueryId: null,
deletingQueryId: null,
asyncQueryRuns: [],
};
export const createQueryPanelSlice = (set, get) => ({