Skip to content

Commit d251caf

Browse files
committed
fix: prettier formatting in SystemSettingsCard
1 parent 8db13f3 commit d251caf

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

frontend/src/pages/SettingsPage/components/SystemSettingsCard.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)