Skip to content

Commit

Permalink
Proposed fix for untranslated 'Mint' string on home screen. (#316)
Browse files Browse the repository at this point in the history
* Fix untranslated 'Mint' string on homescreen when no mints are set up.

* Fix untranslated 'Mint' string on home screen when no mints are set up.
  • Loading branch information
onoomobo committed Mar 11, 2024
1 parent 1c5ec6a commit 8b9a36d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/screens/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export default function Dashboard({ navigation, route }: TDashboardPageProps) {
:
<ActionBtn
icon={<PlusIcon width={s(36)} height={vs(36)} color={hi[highlight]} />}
txt='Mint'
txt={t('mint')}
color={hi[highlight]}
onPress={() => setModal(prev => ({ ...prev, mint: true }))}
/>
Expand Down Expand Up @@ -494,4 +494,4 @@ const styles = ScaledSheet.create({
borderColor: mainColors.WARN,
borderRadius: '50@s',
}
})
})

0 comments on commit 8b9a36d

Please sign in to comment.