File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed
invokeai/frontend/web/src/features/ui/store Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ export const initialUIState: UIState = {
1010 _version : 1 ,
1111 activeTab : 'txt2img' ,
1212 shouldShowImageDetails : false ,
13- shouldShowExistingModelsInSearch : false ,
1413 shouldHidePreview : false ,
1514 shouldShowProgressInViewer : true ,
1615 panels : { } ,
@@ -29,12 +28,6 @@ export const uiSlice = createSlice({
2928 setShouldHidePreview : ( state , action : PayloadAction < boolean > ) => {
3029 state . shouldHidePreview = action . payload ;
3130 } ,
32- setShouldShowExistingModelsInSearch : (
33- state ,
34- action : PayloadAction < boolean >
35- ) => {
36- state . shouldShowExistingModelsInSearch = action . payload ;
37- } ,
3831 setShouldShowProgressInViewer : ( state , action : PayloadAction < boolean > ) => {
3932 state . shouldShowProgressInViewer = action . payload ;
4033 } ,
@@ -55,7 +48,6 @@ export const uiSlice = createSlice({
5548export const {
5649 setActiveTab,
5750 setShouldShowImageDetails,
58- setShouldShowExistingModelsInSearch,
5951 setShouldHidePreview,
6052 setShouldShowProgressInViewer,
6153 panelsChanged,
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ export interface UIState {
44 _version : 1 ;
55 activeTab : InvokeTabName ;
66 shouldShowImageDetails : boolean ;
7- shouldShowExistingModelsInSearch : boolean ;
87 shouldHidePreview : boolean ;
98 shouldShowProgressInViewer : boolean ;
109 panels : Record < string , string > ;
You can’t perform that action at this time.
0 commit comments