Skip to content

Commit 062f483

Browse files
committed
Fix installing a custom theme
1 parent 15a61d5 commit 062f483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app/src/app/overmind/effects/vscode/initializers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ export function initializeCustomTheme() {
174174
const customTheme = localStorage.getItem('settings.manualCustomVSCodeTheme');
175175

176176
if (customTheme) {
177-
installCustomTheme('custom', 'Custom Theme', customTheme);
177+
installCustomTheme('custom', 'Custom Theme', JSON.parse(customTheme));
178178
}
179179
}
180180

0 commit comments

Comments
 (0)