diff --git a/web_patient/src/components/Home/HomePage.tsx b/web_patient/src/components/Home/HomePage.tsx index e5f33a78..c2c3d2ac 100644 --- a/web_patient/src/components/Home/HomePage.tsx +++ b/web_patient/src/components/Home/HomePage.tsx @@ -39,7 +39,7 @@ export const HomePage: FunctionComponent = observer(() => { viewState.showPendingOverdueActivities = event.target.checked; }); - const overdueItems = rootStore.patientStore.getOverdueItems(2); + const overdueItems = rootStore.patientStore.getOverdueItems(1); const onTaskClick = action((item: IScheduledActivity) => () => { navigate( diff --git a/web_patient/src/services/strings.ts b/web_patient/src/services/strings.ts index 0b4c4e9c..59b60346 100644 --- a/web_patient/src/services/strings.ts +++ b/web_patient/src/services/strings.ts @@ -27,7 +27,7 @@ const _strings = { Home_plan_title: 'My plan for today', Home_plan_empty: 'You do not have any planned activities for today.', Home_plan_done: 'You have completed all planned activities for today! Make sure to celebrate your achievement!', - Home_overdue_title: 'My Past 2 Weeks', + Home_overdue_title: 'My Past Week', Home_overdue_pending: 'Past Due', Home_overdue_all: 'All Activities', Home_overdue_empty: 'You did not have any planned activities.',