File tree 2 files changed +8
-3
lines changed
apps/codeimage/src/state/theme
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @codeimage/app ' : patch
3
+ ---
4
+
5
+ fix: fix xcode theme id in theme registry
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export const THEME_REGISTRY: ReadonlyArray<ThemeRegistryEntry> = [
17
17
load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . vsCodeDarkTheme ) ,
18
18
} ,
19
19
{
20
- id : 'xcodeDarkTheme ' ,
20
+ id : 'xCodeDark ' ,
21
21
// prettier-ignore
22
22
load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . xCodeDarkTheme ) ,
23
23
} ,
@@ -42,7 +42,7 @@ export const THEME_REGISTRY: ReadonlyArray<ThemeRegistryEntry> = [
42
42
load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . draculaTheme ) ,
43
43
} ,
44
44
{
45
- id : 'xcodeLightTheme ' ,
45
+ id : 'xCodeLight ' ,
46
46
// prettier-ignore
47
47
load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . xCodeLightTheme ) ,
48
48
} ,
@@ -82,7 +82,7 @@ export const THEME_REGISTRY: ReadonlyArray<ThemeRegistryEntry> = [
82
82
load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . auraTheme ) ,
83
83
} ,
84
84
{
85
- id : 'light ' ,
85
+ id : 'oneLight ' ,
86
86
// prettier-ignore
87
87
load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . lightTheme ) ,
88
88
} ,
You can’t perform that action at this time.
0 commit comments