Skip to content

Commit

Permalink
Ensure requests work
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Aug 3, 2023
1 parent 679ac0d commit 87087c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/HNTKeyboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const HNTKeyboardSelector = forwardRef(
{!loadingMeta && (
<Text variant="subtitle2">
{t('hntKeyboard.enterAmount', {
ticker: symbol,
ticker: symbol || '',
})}
</Text>
)}
Expand Down Expand Up @@ -465,7 +465,7 @@ const HNTKeyboardSelector = forwardRef(
numberOfLines={1}
adjustsFontSizeToFit
>
{`${value || '0'} ${symbol}`}
{`${value || '0'} ${symbol || ''}`}
</Text>
{payer && networkFee && (
<Text
Expand Down

0 comments on commit 87087c0

Please sign in to comment.