Skip to content

Commit ae57609

Browse files
Update components/dashboard/src/settings/Preferences.tsx
Co-authored-by: Jan Keromnes <[email protected]>
1 parent 2086988 commit ae57609

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dashboard/src/settings/Preferences.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export default function Preferences() {
128128
<div className="my-4 gap-4 flex flex-wrap">
129129
{
130130
desktopIdeOptions.map(([id, option]) => {
131-
let selected = defaultDesktopIde === id;
131+
const selected = defaultDesktopIde === id;
132132
const onSelect = () => actuallySetDefaultDesktopIde(id);
133133
if (id === DesktopNoneId) {
134134
option.logo = isDark ? IDENoneDark : IDENone

0 commit comments

Comments
 (0)