From b77b654df1ed3a84c9b6d5657c66bfd1ab19636f Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Tue, 7 May 2024 06:30:24 -0300 Subject: [PATCH] I should have done this in the dev branch but it's whatever now --- src/webpack/common/stores.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpack/common/stores.ts b/src/webpack/common/stores.ts index 1abfbf7a0..58cbece30 100644 --- a/src/webpack/common/stores.ts +++ b/src/webpack/common/stores.ts @@ -74,6 +74,6 @@ export const DraftStore = findStore("DraftStore"); export const useStateFromStores = find(filters.byProps("useStateFromStores"), m => m.useStateFromStores) as ( stores: t.FluxStore[], mapper: () => T, - dependencies?: any, + dependencies?: any[], isEqual?: (old: T, newer: T) => boolean ) => T;