Skip to content

Commit

Permalink
fix: locale
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuditi committed Feb 26, 2024
1 parent 87729a0 commit eea94a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
validateEthereumAddress(tokenAddress)
const persistedNft = await persistErc721Nft(tokenAddress, tokenId, networkId)
if (!persistedNft) {
throw new Error(localize('popups.importTokens.errors.alreadyAdded'))
throw new Error(localize('popups.importToken.errors.alreadyAdded'))
}
addNewTrackedNftToActiveProfile(networkId, persistedNft.id, TokenTrackingStatus.ManuallyTracked)
Expand All @@ -57,7 +57,7 @@
})
closePopup()
} catch (err) {
tokenIdError = err
tokenIdError = err?.message ?? err
} finally {
busy = false
}
Expand Down

0 comments on commit eea94a6

Please sign in to comment.