diff --git a/lib/reducers/report-store-reducer.js b/lib/reducers/report-store-reducer.js
--- a/lib/reducers/report-store-reducer.js
+++ b/lib/reducers/report-store-reducer.js
@@ -66,7 +66,7 @@
           ? defaultDevEnabledReports
           : defaultEnabledReports,
       },
-      reportStoreOperations: [],
+      reportStoreOperations: [{ type: 'remove_all_reports' }],
     };
   } else if (
     action.type === logInActionTypes.success ||
@@ -80,7 +80,7 @@
             ? defaultDevEnabledReports
             : defaultEnabledReports,
       },
-      reportStoreOperations: [],
+      reportStoreOperations: [{ type: 'remove_all_reports' }],
     };
   } else if (
     (action.type === sendReportActionTypes.success ||