Skip to content

Commit d34876e

Browse files
fixed broken test
1 parent f06cb61 commit d34876e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cpt-ui/src/constants/ui-strings/PrescriptionListTabStrings.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ export interface FormattableTabHeader {
99

1010
export const PRESCRIPTION_LIST_TABS: Record<string, FormattableTabHeader> = {
1111
current: {
12-
title: (count: number) => `Current prescriptions (${count})`,
12+
title: (count: number) => `(${count})`,
1313
link: () =>
1414
FRONTEND_PATHS.PRESCRIPTION_LIST_CURRENT
1515
},
1616
future: {
17-
title: (count: number) => `Future-dated prescriptions (${count})`,
17+
title: (count: number) => `(${count})`,
1818
link: () =>
1919
FRONTEND_PATHS.PRESCRIPTION_LIST_FUTURE
2020
},
2121
past: {
22-
title: (count: number) => `Claimed and expired prescriptions (${count})`,
22+
title: (count: number) => `(${count})`,
2323
link: () =>
2424
FRONTEND_PATHS.PRESCRIPTION_LIST_PAST
2525
}

0 commit comments

Comments
 (0)