From 6716339c0e754bd5aa3fc5bea4484354c6fb4697 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Mon, 29 Jan 2024 20:55:16 +0100 Subject: [PATCH] Set default value for resetting to 50% (#585) Should have been updated along with 2dab88eb7ef26eba29c96c9bbf6ef13fce95eea6 --- src/components/reader/ReaderSettingsOptions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/reader/ReaderSettingsOptions.tsx b/src/components/reader/ReaderSettingsOptions.tsx index c695592d..aaf4c887 100644 --- a/src/components/reader/ReaderSettingsOptions.tsx +++ b/src/components/reader/ReaderSettingsOptions.tsx @@ -92,7 +92,7 @@ export function ReaderSettingsOptions({ value={readerWidth} minValue={10} maxValue={100} - defaultValue={100} + defaultValue={50} valueUnit="%" showSlider handleUpdate={(width: number) => setSettingValue('readerWidth', width)}