Skip to content

Commit 43f0e8a

Browse files
committed
fix: adjust min volume level
Signed-off-by: Adam Setch <[email protected]>
1 parent c9f643e commit 43f0e8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/components/settings/SystemSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ export const SystemSettings: FC = () => {
106106
onClick={() => {
107107
const newVolume = Math.max(
108108
settings.notificationVolume - 10,
109-
0,
109+
10,
110110
);
111111
updateSetting('notificationVolume', newVolume);
112112
}}

0 commit comments

Comments
 (0)