Skip to content

Commit ec150eb

Browse files
committed
prettier
1 parent 052de86 commit ec150eb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

client/src/components/Sidebar.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,13 @@ const Sidebar = ({
199199
return next;
200200
});
201201
}}
202-
aria-label={shownEnvVars.has(key) ? "Hide value" : "Show value"}
202+
aria-label={
203+
shownEnvVars.has(key) ? "Hide value" : "Show value"
204+
}
203205
aria-pressed={shownEnvVars.has(key)}
204-
title={shownEnvVars.has(key) ? "Hide value" : "Show value"}
206+
title={
207+
shownEnvVars.has(key) ? "Hide value" : "Show value"
208+
}
205209
>
206210
{shownEnvVars.has(key) ? (
207211
<Eye className="h-4 w-4" aria-hidden="true" />

0 commit comments

Comments
 (0)