From b71ba63b5a893d52e962110e0d0dd137c1a40982 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Thu, 6 Jun 2024 08:53:38 +1000 Subject: [PATCH] feat(ui): temp disable history on CL --- .../src/features/controlLayers/store/controlLayersSlice.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/invokeai/frontend/web/src/features/controlLayers/store/controlLayersSlice.ts b/invokeai/frontend/web/src/features/controlLayers/store/controlLayersSlice.ts index c9fe150969..b2fc8b0754 100644 --- a/invokeai/frontend/web/src/features/controlLayers/store/controlLayersSlice.ts +++ b/invokeai/frontend/web/src/features/controlLayers/store/controlLayersSlice.ts @@ -1007,6 +1007,8 @@ export const controlLayersUndoableConfig: UndoableOptions { + // TODO(psyche): TEMP OVERRIDE + return false; // // Ignore all actions from other slices // if (!action.type.startsWith(controlLayersSlice.name)) { // return false; @@ -1016,6 +1018,6 @@ export const controlLayersUndoableConfig: UndoableOptions