Skip to content

Commit

Permalink
fix: correctly destructure persisted token
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuditi committed Apr 30, 2024
1 parent 2e1d068 commit 860fbcd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function updatePersistedToken(networkId: NetworkId, partialPersistedToken
return state
}
state[profileId][networkId][tokenId] = {
...state[profileId][tokenId],
...state[profileId][networkId][tokenId],
...partialPersistedToken,
}
return state
Expand Down

0 comments on commit 860fbcd

Please sign in to comment.