Skip to content

Commit

Permalink
addresses turned into lowercase due to vuedapp upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
tempe-techie committed May 27, 2024
1 parent fd35807 commit 0fd7f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/modules/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export default {
commit('setIsMinterAdmin', false)
}

if (minterAdmin != address.value) {
if (String(minterAdmin).toLowerCase() != String(address.value).toLowerCase()) {
// check if current user is manager of the minter contract
const isManager = await minterContract.isManager(address.value)

Expand Down

0 comments on commit 0fd7f9b

Please sign in to comment.