Skip to content

Commit fbd180f

Browse files
committed
fixed typo from IS_STANDLALONE to IS_STANDALONE
1 parent 3339383 commit fbd180f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/lib/storage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import defaultProject from './default-project';
44

55
// eslint-disable-next-line import/no-commonjs
66
const {TRUSTED_IFRAME_HOST} = require('./brand.js');
7-
const isStandAlone = process.env.IS_STANDLALONE === 'true';
7+
const isStandAlone = process.env.IS_STANDALONE === 'true';
88

99
/**
1010
* Wrapper for ScratchStorage which adds default web sources.

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ module.exports = [
197197
'process.env.FORCE_EMBED': JSON.stringify(process.env.FORCE_EMBED || 'true'),
198198
'process.env.COLLABORATION_HOST': JSON.stringify(process.env.COLLABORATION_HOST || 'wss://collaborator.codetorch.net/'),
199199
'process.env.COLLABORATION_DEV_MODE': JSON.stringify(process.env.COLLABORATION_DEV_MODE || 'false'),
200-
'process.env.IS_STANDLALONE': JSON.stringify(process.env.IS_STANDLALONE || 'false')
200+
'process.env.IS_STANDALONE': JSON.stringify(process.env.IS_STANDALONE || 'false')
201201
}),
202202
new HtmlWebpackPlugin({
203203
chunks: ['editor'],

0 commit comments

Comments
 (0)