From b45b409041500cce3a695f1732d65317f9ea1734 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Fri, 20 Dec 2024 14:49:59 +0100 Subject: [PATCH] Fix any --- .../src/components/grid/stores/datasources/viewV2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend-core/src/components/grid/stores/datasources/viewV2.ts b/packages/frontend-core/src/components/grid/stores/datasources/viewV2.ts index a24dff1f23..304a25efb3 100644 --- a/packages/frontend-core/src/components/grid/stores/datasources/viewV2.ts +++ b/packages/frontend-core/src/components/grid/stores/datasources/viewV2.ts @@ -115,7 +115,7 @@ export const initialise = (context: StoreContext) => { // Keep a list of subscriptions so that we can clear them when the datasource // config changes - let unsubscribers = [] + let unsubscribers: any[] = [] // Observe datasource changes and apply logic for view V2 datasources datasource.subscribe($datasource => {