Skip to content

Commit

Permalink
Remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
siepra committed Oct 9, 2023
1 parent 3292d36 commit 97c8c7b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion packages/mobile/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ function App(): JSX.Element {
linking={linking}
onReady={() => {
dispatch(initActions.blindWebsocketConnection())
console.log('Dispatching redirection action')
dispatch(navigationActions.redirection())
}}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import { identity } from '@quiet/state-manager'
import { initActions } from '../../init/init.slice'

export function* redirectionSaga(): Generator {
console.log('Entered redirection saga')

// Do not redirect if user opened the app from url (quiet://)
const deepLinking = yield* select(initSelectors.deepLinking)
if (deepLinking) return
Expand Down
1 change: 0 additions & 1 deletion packages/mobile/src/store/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,5 @@ export const store = configureStore({
})

export const persistor = persistStore(store, {}, () => {
console.log('Dispatching set store ready action')
store.dispatch(initActions.setStoreReady())
})

0 comments on commit 97c8c7b

Please sign in to comment.