From 71b7941e61cc3017cc490b5499cfbcbcba76fdf1 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Thu, 25 Jul 2024 15:33:09 +1000 Subject: [PATCH] feat(ui): enable info popovers by default --- invokeai/frontend/web/src/features/system/store/systemSlice.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/system/store/systemSlice.ts b/invokeai/frontend/web/src/features/system/store/systemSlice.ts index 488410d5f3a..3c700e683e7 100644 --- a/invokeai/frontend/web/src/features/system/store/systemSlice.ts +++ b/invokeai/frontend/web/src/features/system/store/systemSlice.ts @@ -27,7 +27,7 @@ const initialSystemState: SystemState = { language: 'en', shouldUseNSFWChecker: false, shouldUseWatermarker: false, - shouldEnableInformationalPopovers: false, + shouldEnableInformationalPopovers: true, status: 'DISCONNECTED', cancellations: [], };