File tree Expand file tree Collapse file tree
apps/web/src/components/settings Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -434,6 +434,7 @@ export function useSettingsRestore(onRestored?: () => void) {
434434 timestampFormat : DEFAULT_UNIFIED_SETTINGS . timestampFormat ,
435435 diffWordWrap : DEFAULT_UNIFIED_SETTINGS . diffWordWrap ,
436436 diffIgnoreWhitespace : DEFAULT_UNIFIED_SETTINGS . diffIgnoreWhitespace ,
437+ sidebarThreadPreviewCount : DEFAULT_UNIFIED_SETTINGS . sidebarThreadPreviewCount ,
437438 autoOpenPlanSidebar : DEFAULT_UNIFIED_SETTINGS . autoOpenPlanSidebar ,
438439 enableAssistantStreaming : DEFAULT_UNIFIED_SETTINGS . enableAssistantStreaming ,
439440 defaultThreadEnvMode : DEFAULT_UNIFIED_SETTINGS . defaultThreadEnvMode ,
Original file line number Diff line number Diff line change @@ -515,6 +515,7 @@ export const ClientSettingsPatch = Schema.Struct({
515515 ) ,
516516 sidebarProjectSortOrder : Schema . optionalKey ( SidebarProjectSortOrder ) ,
517517 sidebarThreadSortOrder : Schema . optionalKey ( SidebarThreadSortOrder ) ,
518+ sidebarThreadPreviewCount : Schema . optionalKey ( SidebarThreadPreviewCount ) ,
518519 timestampFormat : Schema . optionalKey ( TimestampFormat ) ,
519520} ) ;
520521export type ClientSettingsPatch = typeof ClientSettingsPatch . Type ;
You can’t perform that action at this time.
0 commit comments