diff --git a/src/apps/dashboard/dashboard-fees/dashboard-fees.tsx b/src/apps/dashboard/dashboard-fees/dashboard-fees.tsx index 6acb5fd783..8a2d31e9ae 100644 --- a/src/apps/dashboard/dashboard-fees/dashboard-fees.tsx +++ b/src/apps/dashboard/dashboard-fees/dashboard-fees.tsx @@ -45,7 +45,8 @@ const DashboardFees: FC = () => { placeholders: { "@total": totalFeeAmount } })} overdueText={t("totalOwedText")} - rightButtonText={t("payOwedText")} + rightButtonText={t("seeMoreText")} + rightButtonAriaLabelText={t("seeMoreAriaLabelText")} rightLink={feesPageUrl} /> diff --git a/src/apps/dashboard/dashboard.dev.tsx b/src/apps/dashboard/dashboard.dev.tsx index bcbe1541b2..00b949aff2 100644 --- a/src/apps/dashboard/dashboard.dev.tsx +++ b/src/apps/dashboard/dashboard.dev.tsx @@ -50,8 +50,12 @@ export default { defaultValue: "You owe in total", control: { type: "text" } }, - payOwedText: { - defaultValue: "Pay", + seeMoreText: { + defaultValue: "See more", + control: { type: "text" } + }, + seeMoreAriaLabelText: { + defaultValue: "See your fees and how to pay", control: { type: "text" } }, totalAmountFeeText: { diff --git a/src/apps/dashboard/dashboard.entry.tsx b/src/apps/dashboard/dashboard.entry.tsx index 26afd0907c..cbb1d826f1 100644 --- a/src/apps/dashboard/dashboard.entry.tsx +++ b/src/apps/dashboard/dashboard.entry.tsx @@ -43,7 +43,8 @@ export interface DashBoardProps { materialByAuthorText: string; noPhysicalLoansText: string; noReservationsText: string; - payOwedText: string; + seeMoreText: string; + seeMoreAriaLabelText: string; physicalLoansText: string; publizonAudioBookText: string; publizonEbookText: string;