Skip to content

Commit 4739a18

Browse files
authored
Added space between if and (
1 parent 0c742e6 commit 4739a18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reactComponents/BlocklyComponent.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ const BlocklyComponent = React.forwardRef<BlocklyComponentType | null, BlocklyCo
8080
const workspaceRef = React.useRef<Blockly.WorkspaceSvg | null>(null);
8181

8282
const getBlocklyTheme = (): Blockly.Theme => {
83-
if(theme === 'dark' || theme === 'compact-dark') {
83+
if (theme === 'dark' || theme === 'compact-dark') {
8484
return MrcDarkTheme.theme;
8585
}
86-
if(theme === 'light' || theme === 'compact') {
86+
if (theme === 'light' || theme === 'compact') {
8787
return MrcLightTheme.theme;
8888
}
8989
// Default to light theme if unknown

0 commit comments

Comments
 (0)