File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
apps/codeimage/src/state/theme Expand file tree Collapse file tree 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> = [
1717 load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . vsCodeDarkTheme ) ,
1818 } ,
1919 {
20- id : 'xcodeDarkTheme ' ,
20+ id : 'xCodeDark ' ,
2121 // prettier-ignore
2222 load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . xCodeDarkTheme ) ,
2323 } ,
@@ -42,7 +42,7 @@ export const THEME_REGISTRY: ReadonlyArray<ThemeRegistryEntry> = [
4242 load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . draculaTheme ) ,
4343 } ,
4444 {
45- id : 'xcodeLightTheme ' ,
45+ id : 'xCodeLight ' ,
4646 // prettier-ignore
4747 load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . xCodeLightTheme ) ,
4848 } ,
@@ -82,7 +82,7 @@ export const THEME_REGISTRY: ReadonlyArray<ThemeRegistryEntry> = [
8282 load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . auraTheme ) ,
8383 } ,
8484 {
85- id : 'light ' ,
85+ id : 'oneLight ' ,
8686 // prettier-ignore
8787 load : ( ) => import ( '@codeimage/highlight/themes' ) . then ( m => m . lightTheme ) ,
8888 } ,
You can’t perform that action at this time.
0 commit comments