Skip to content

Commit

Permalink
fix: remove fixed amount on fee for no fee wording (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
wainola authored Nov 30, 2023
1 parent 5f532fc commit f9ca099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/Helpers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ export const formatDistanceDate = (timestamp: string): string => {
}

export const getFormatedFee = (fee: Transfer["fee"] | string, domain: SharedConfigDomain): string => {
let formatedFee = "50.0 PHA"
let formatedFee = "No fee"

if (typeof fee !== "string" && domain) {
const { nativeTokenDecimals, nativeTokenSymbol } = domain
Expand Down

0 comments on commit f9ca099

Please sign in to comment.