Skip to content

Commit 1312a68

Browse files
committed
Removed superfluous log statements
1 parent b0f4eff commit 1312a68

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/application/ApplicationThunks.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,6 @@ export const handleSharedDashboardsThunk = () => (dispatch: any) => {
331331
*/
332332
export const onConfirmLoadSharedDashboardThunk = () => (dispatch: any, getState: any) => {
333333
try {
334-
console.log('IN');
335334
const state = getState();
336335
const { shareDetails } = state.application;
337336
dispatch(setWelcomeScreenOpen(false));
@@ -432,13 +431,11 @@ export const loadApplicationConfigThunk = () => async (dispatch: any, getState:
432431

433432
// Check if we are in standalone mode
434433
// const standaloneShared = localStorage.getItem('standaloneShared') == 'true'; // EDGE case: from url param it could happen that we lose the value due to SSO redirect
435-
const {standalone} = config;
434+
const { standalone } = config;
436435
// || standaloneShared;
437436

438437
// if a dashboard database was previously set, remember to use it.
439438
const dashboardDatabase = state.application.standaloneDashboardDatabase;
440-
console.log(`Standalone: ${ standalone}`);
441-
console.log(`Standalone Shared${ localStorage.getItem('standaloneShared')}`);
442439
dispatch(
443440
setStandaloneEnabled(
444441
standalone,

0 commit comments

Comments
 (0)