From 24cfb23b39189f7512b76db128bf26857afa5da6 Mon Sep 17 00:00:00 2001 From: Jan Prochazka Date: Thu, 2 Jun 2022 15:42:38 +0200 Subject: [PATCH] fix --- packages/web/src/stores.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/stores.ts b/packages/web/src/stores.ts index 421fbc868..4efd690d7 100644 --- a/packages/web/src/stores.ts +++ b/packages/web/src/stores.ts @@ -89,7 +89,7 @@ export const openedSnackbars = writable([]); export const nullStore = readable(null, () => {}); export const currentArchive = writableWithStorage('default', 'currentArchive'); export const currentApplication = writableWithStorage(null, 'currentApplication'); -export const isFileDragActive = writable(true); +export const isFileDragActive = writable(false); export const selectedCellsCallback = writable(null); export const loadingPluginStore = writable({ loaded: false,