Skip to content

Commit

Permalink
SEP-6: don't crash if fee is not returned in /price (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
quietbits authored Sep 9, 2024
1 parent f217387 commit 6521d93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const Sep6PriceModal = ({
},
{
label: "Fee",
value: fee.total,
value: fee?.total || "",
},
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const Sep6QuoteModal = ({
},
{
label: "Fee",
value: fee.total,
value: fee?.total || "",
},
];

Expand Down

0 comments on commit 6521d93

Please sign in to comment.