We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b04b76a commit ccd7eb1Copy full SHA for ccd7eb1
typescript-packages/loader/src/browser-init.ts
@@ -23,7 +23,7 @@ export async function appendAccentColor() {
23
24
export async function appendQuickCss() {
25
try {
26
- const quickCss: string = JSON.parse(await Millennium.callServerMethod('core', 'Core_LoadQuickCss'));
+ const quickCss: string = await Millennium.callServerMethod('core', 'Core_LoadQuickCss');
27
addStyleSheetFromText(document, quickCss, 'MillenniumQuickCss');
28
} catch {}
29
}
0 commit comments