diff --git a/packages/app-mobile/utils/appReducer.ts b/packages/app-mobile/utils/appReducer.ts index 317af03b5b..afd144f2c1 100644 --- a/packages/app-mobile/utils/appReducer.ts +++ b/packages/app-mobile/utils/appReducer.ts @@ -67,6 +67,11 @@ const appReducer = (state = appDefaultState, action: any) => { newState.selectedNoteHash = ''; + if (currentRoute.routeName === 'Search' && action.routeName === 'Notes') { + // Force a reload of the note list + newState.notesSource = ''; + } + if (action.routeName === 'Search') { newState.notesParentType = 'Search'; }