Skip to content

Commit

Permalink
Set max number of double chance markets to 6
Browse files Browse the repository at this point in the history
  • Loading branch information
vladanthales committed Mar 7, 2023
1 parent bc234ee commit cfc7888
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/redux/modules/parlay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { RootState } from '../rootReducer';
const sliceName = 'parlay';

const DEFAULT_MAX_NUMBER_OF_MATCHES = 8;
const MAX_NUMBER_OF_DOUBLE_CHANCES_ON_PARLAY = 9;
const MAX_NUMBER_OF_DOUBLE_CHANCES_ON_PARLAY = 6;

const getDefaultParlay = (): ParlaysMarketPosition[] => {
const lsParlay = localStore.get(LOCAL_STORAGE_KEYS.PARLAY);
Expand Down

0 comments on commit cfc7888

Please sign in to comment.