Ignore:
Timestamp:
07/16/22 21:31:18 (2 years ago)
Author:
anastasovv <simon@…>
Branches:
main
Children:
e903234
Parents:
55701f0
Message:

Now you need to activate your account via email & also added mail sending after server crash

File:
1 edited

Legend:

Unmodified
Added
Removed
  • components/poker/PokerHeader.jsx

    r55701f0 re007fcd  
    3434        axios.get(`/api/poker?action=get_player_info_on_enter&session_id=${localStorage.CAESSINO_SESSION_ID}`).then(res => {
    3535            if (res.data?.success) {
     36                dispatch(setPlayer({
     37                    ...playerState.player,
     38                    displayName: res.data?.displayName,
     39                    username: res.data?.username,
     40                    session_id: res.data?.session_id,
     41                    credits: res.data?.credits,
     42                }))
     43
    3644                if (interval !== null) clearInterval(interval);
    3745
Note: See TracChangeset for help on using the changeset viewer.