Skip to content

Commit

Permalink
feat: [#173651699] add Wallet Home and Transaction Details to allowed…
Browse files Browse the repository at this point in the history
… snapshottable screens (#2014)
  • Loading branch information
fabriziofff authored Jul 6, 2020
1 parent 8fde1b5 commit a3183bf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ts/store/reducers/allowedSnapshotScreens.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import { createSelector } from "reselect";
import { bonusVacanzeEnabled } from "../../config";
import BONUSVACANZE_ROUTES from "../../features/bonusVacanze/navigation/routes";
import ROUTES from "../../navigation/routes";
import { isDebugModeEnabledSelector } from "./debug";
import { plainNavigationCurrentRouteSelector } from "./navigation";

const defaultScreenWhiteList: ReadonlyArray<string> = [];
const defaultScreenWhiteList: ReadonlyArray<string> = [
ROUTES.WALLET_HOME,
ROUTES.WALLET_TRANSACTION_DETAILS
];

const screenBonusVacanzaWhiteList: ReadonlyArray<string> = [
BONUSVACANZE_ROUTES.BONUS_ACTIVE_DETAIL_SCREEN
Expand Down

0 comments on commit a3183bf

Please sign in to comment.