Skip to content

Commit

Permalink
chore(sdk): Removed SDK references
Browse files Browse the repository at this point in the history
  • Loading branch information
FranklinWaller committed Aug 19, 2019
1 parent f4809b3 commit 68ce425
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ import 'babel-polyfill';
// import injectTapEventPlugin from 'react-tap-event-plugin';
import App from './src/js/App.jsx';
import './src/scss/index.scss';
import Sdk from '../SDK';
// import Sdk from '../SDK';
import InstanceBag from './src/js/InstanceBag';
import Configuration from './src/js/Configuration';
import packageJson from './package.json';

// injectTapEventPlugin();

const env = Configuration.getEnvironment();
const sdkEnv = env === 'production' ? 'root' : env;
// const sdkEnv = env === 'production' ? 'root' : env;

const sdk = new Sdk('__playos_auth_development', {
environment: sdkEnv,
});
// const sdk = new Sdk('__playos_auth_development', {
// environment: sdkEnv,
// });

InstanceBag.set('sdk', sdk);
// InstanceBag.set('sdk', sdk);

const app = new App('app');
app.run();
Expand Down

0 comments on commit 68ce425

Please sign in to comment.