diff --git a/ui/src/components/CustomTerminal/helper/index.ts b/ui/src/components/CustomTerminal/helper/index.ts index e6f07404..6dd45b32 100644 --- a/ui/src/components/CustomTerminal/helper/index.ts +++ b/ui/src/components/CustomTerminal/helper/index.ts @@ -49,7 +49,7 @@ export const handleEventFromLuna = ( ) => { const msg: LunaEventMessage = e.data; - // info('Received post message:', msg); + info('Received post message:', msg); switch (msg.name) { case 'PING': diff --git a/ui/src/router/helper/guard.ts b/ui/src/router/helper/guard.ts index 21bfc1a7..c9e77546 100644 --- a/ui/src/router/helper/guard.ts +++ b/ui/src/router/helper/guard.ts @@ -31,6 +31,9 @@ const getLunaConfig = () => { const { setTerminalConfig } = terminalStore; const localSetting: string | null = localStorage.getItem('LunaSetting'); + + console.info(localSetting); + let fontSize = terminalStore.fontSize; if (localSetting !== null) {