File tree Expand file tree Collapse file tree
frontend/src/pages/SettingsPage/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,7 +53,8 @@ const SystemSettingsCard: React.FC = () => {
5353 const isDisabled = loading || pending || autostart === null ;
5454 const isChecked = autostart === true ;
5555
56- const closeToTrayDisabled = loading || pendingCloseToTray || closeToTray === null ;
56+ const closeToTrayDisabled =
57+ loading || pendingCloseToTray || closeToTray === null ;
5758 const closeToTrayChecked = closeToTray === true ;
5859
5960 return (
@@ -105,7 +106,10 @@ const SystemSettingsCard: React.FC = () => {
105106 < div id = "close-to-tray-label" className = "font-medium" >
106107 Close to tray
107108 </ div >
108- < div id = "close-to-tray-desc" className = "text-muted-foreground text-sm" >
109+ < div
110+ id = "close-to-tray-desc"
111+ className = "text-muted-foreground text-sm"
112+ >
109113 When enabled, closing the window hides the app to the system tray
110114 instead of exiting.
111115 </ div >
You can’t perform that action at this time.
0 commit comments