diff --git a/src/App.tsx b/src/App.tsx index 4808cb07b9..07e5a4bf84 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -116,8 +116,8 @@ const GlobalStyle = createGlobalStyle` /* deprecated */ /* Colors */ ${Object.entries(blocksColors) - .map(([colorName, code]) => `--${colorName}: ${code};`) - .join('')} + .map(([colorName, code]) => `--${colorName}: ${code};`) + .join('')} /* Font Family */ --font-family: 'FK Grotesk Neu'; @@ -147,7 +147,7 @@ const extendConsole = () => { window.console = {}; } if (window.console[level] === 'undefined' || !window.console[level] || window.console[level] === null) { - window.console[level] = function () { }; + window.console[level] = function () {}; } if (enabled) { if (disabledConsoles[level]) { @@ -155,7 +155,7 @@ const extendConsole = () => { } } else { disabledConsoles[level] = window.console[level]; - window.console[level] = function () { }; + window.console[level] = function () {}; } }; } catch (e) { @@ -356,7 +356,7 @@ export default function App() { {/* Shared among all pages, load universal things here */}