refactor(recent-files): remove user config from frontend files

Signed-off-by: Cristian Scheid <cristianscheid@gmail.com>
This commit is contained in:
Cristian Scheid 2026-03-24 15:38:53 -03:00 committed by backportbot[bot]
parent 7c03d21ef2
commit e804544083
2 changed files with 1 additions and 3 deletions

View file

@ -21,7 +21,6 @@ const initialUserConfig = loadState<UserConfig>('files', 'config', {
show_mime_column: true,
sort_favorites_first: true,
sort_folders_first: true,
recent_files_limit: 100,
show_dialog_deletion: false,
show_dialog_file_extension: true,

View file

@ -50,7 +50,7 @@ export interface PathOptions {
// User config store
export interface UserConfig {
[key: string]: boolean | string | number | undefined
[key: string]: boolean | string | undefined
crop_image_previews: boolean
default_view: 'files' | 'personal'
@ -58,7 +58,6 @@ export interface UserConfig {
grid_view: boolean
sort_favorites_first: boolean
sort_folders_first: boolean
recent_files_limit: number
show_files_extensions: boolean
show_hidden: boolean