Skip to content

Commit e15fbb6

Browse files
committed
cleanup comments
1 parent e24e747 commit e15fbb6

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Client/app/state/app.reducer.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ export const appReducer: ActionReducer<AppStateRecord> = (state = makeInitialSta
1919
switch (action.type) {
2020

2121
case LOGIN_USER:
22-
console.log(action.payload);
23-
// state.set('loggedInUser', action.payload);
24-
// state.set('loggedIn', true);
2522
return state.merge({ loggedInUser: action.payload, loggedIn: true });
2623

2724
case LOGOUT_USER:

Client/bootstrap-client.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ const bootApplication = () => platform.bootstrapModule(AppModule);
2828
const hmrBootstrap = () => { handleHmr(module, bootApplication); };
2929

3030
if ((<any>module).hot) {
31-
console.log('we just HMR bootstrapped!');
3231
hmrBootstrap();
3332
} else {
3433
bootApplication();

0 commit comments

Comments
 (0)