Skip to content

Commit 230e689

Browse files
committed
fix oopsie with isVscode
1 parent 772d98a commit 230e689

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pages/playground/Playground.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,8 +1050,7 @@ const Playground: React.FC<PlaygroundProps> = props => {
10501050
}
10511051
};
10521052

1053-
// return !isVscode && isMobileBreakpoint ? (
1054-
return false && isMobileBreakpoint ? (
1053+
return !isVscode && isMobileBreakpoint ? (
10551054
<div className={classNames('Playground', Classes.DARK, isGreen && 'GreenScreen')}>
10561055
<MobileWorkspace {...mobileWorkspaceProps} />
10571056
</div>

0 commit comments

Comments
 (0)