Skip to content

Commit cea5d49

Browse files
committed
Fix redirect of sign in page
1 parent 4ada1db commit cea5d49

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/app/src/app/components/CodeEditor/Monaco/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,6 @@ class MonacoEditor extends React.Component<Props, State> implements Editor {
10631063

10641064
// Add a quick hack for CRA+TS that will be removed when we fully made the switch to
10651065
// VSCode
1066-
10671066
const template = getTemplate(sandbox.template);
10681067
if (template.name === 'create-react-app') {
10691068
return sandbox.modules.some(m => m.title.endsWith('.tsx'));

packages/app/src/app/pages/Dashboard/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ class Dashboard extends React.Component {
104104
}
105105
}
106106

107-
export default inject('store', 'signals')(observer(withRouter(Dashboard)));
107+
export default inject('store', 'signals')(withRouter(observer(Dashboard)));

0 commit comments

Comments
 (0)