Ignore:
Timestamp:
07/15/22 14:45:30 (23 months ago)
Author:
anastasovv <simon@…>
Branches:
main
Children:
55701f0
Parents:
1df3fde
Message:

Added complaints, managing credits, and lost connection screens

File:
1 edited

Legend:

Unmodified
Added
Removed
  • redux/reducers/styleSlice.js

    r1df3fde r433e0c5  
    5656        // manage credits
    5757        displayManageCreditsScreen: false,
     58        displayDepositModal: false,
     59        depositModalInputs: {
     60            name: '',
     61            card: '',
     62            expire: '',
     63            ccv: '',
     64            amount: '',
     65        },
     66        displayWithdrawModal: false,
     67        withdrawModalInputs: {
     68            citibank: '',
     69            iban: '',
     70            bic: '',
     71            beneficiary: '',
     72            address: '',
     73            amount: '',
     74        },
     75        // complain
     76        displayComplainScreen: false,
     77        complainScreenInfo: {
     78            setFocus: true,
     79            description: '',
     80        },
     81        // lost connection
     82        lostConnectionInfo: {
     83            show: false,
     84            message: ''
     85        }
    5886    },
    5987    // blackjack
Note: See TracChangeset for help on using the changeset viewer.