Skip to content

Commit

Permalink
refactor: changed homescreen transactions text
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxwellDG committed Nov 21, 2023
1 parent 9f3d5ba commit f6b3bff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/i18n/en/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2437,7 +2437,7 @@ const en: BaseTranslation = {
},
TransactionScreen: {
noTransaction: "No transaction to show",
title: "Transactions",
title: "All transactions",
recentTransactions: "Recent transactions",
transactionHistoryTitle: "Transaction History",
},
Expand Down
7 changes: 6 additions & 1 deletion app/screens/home-screen/home-screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,12 @@ export const HomeScreen: React.FC = () => {
onPress={() => onMenuClick("transactionHistory")}
activeOpacity={0.6}
>
<Text type="p1" bold {...testProps(recentTransactionsData.title)}>
<Text
type="p1"
style={{ color: colors.primary }}
bold
{...testProps(recentTransactionsData.title)}
>
{recentTransactionsData?.title}
</Text>
</TouchableOpacity>
Expand Down

0 comments on commit f6b3bff

Please sign in to comment.