From 1c57120edfd730a282f02e62275446a09e41c559 Mon Sep 17 00:00:00 2001 From: sawhil Date: Wed, 28 May 2025 13:17:37 +0530 Subject: [PATCH] fix: minor pref fix --- frontend/src/container/OptionsMenu/useOptionsMenu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/container/OptionsMenu/useOptionsMenu.ts b/frontend/src/container/OptionsMenu/useOptionsMenu.ts index aca8be7686..b7359aa2ec 100644 --- a/frontend/src/container/OptionsMenu/useOptionsMenu.ts +++ b/frontend/src/container/OptionsMenu/useOptionsMenu.ts @@ -297,7 +297,7 @@ const useOptionsMenu = ({ updateFormatting({ maxLines: preferences?.formatting?.maxLines || defaultOptionsQuery.maxLines, - format: value === 'list' ? 'table' : value, + format: value, fontSize: preferences?.formatting?.fontSize || defaultOptionsQuery.fontSize, }); handleRedirectWithOptionsData(optionsData);