From fec7300092d3da6ed36056f9c1aedcb31e1c9f56 Mon Sep 17 00:00:00 2001 From: Nic D Date: Wed, 28 Jan 2026 08:56:01 -0500 Subject: [PATCH] fix(timesheet): fix issue where email was incorrectly being sent as param when using timesheet page --- .../components/timesheet-wrapper.vue | 11 +---------- src/pages/timesheet-page.vue | 18 +++++++++++------- 2 files changed, 12 insertions(+), 17 deletions(-) diff --git a/src/modules/timesheets/components/timesheet-wrapper.vue b/src/modules/timesheets/components/timesheet-wrapper.vue index 9600ef4..6a5534d 100644 --- a/src/modules/timesheets/components/timesheet-wrapper.vue +++ b/src/modules/timesheets/components/timesheet-wrapper.vue @@ -6,7 +6,6 @@ import ShiftListScrollable from 'src/modules/timesheets/components/shift-list-scrollable.vue'; import LoadingOverlay from 'src/modules/shared/components/loading-overlay.vue'; import ExpenseDialog from 'src/modules/timesheets/components/expense-dialog.vue'; - import PageHeaderTemplate from 'src/modules/shared/components/page-header-template.vue'; import PayPeriodNavigator from 'src/modules/shared/components/pay-period-navigator.vue'; import TimesheetErrorWidget from 'src/modules/timesheets/components/timesheet-error-widget.vue'; import ShiftListWeeklyOverview from 'src/modules/timesheets/components/shift-list-weekly-overview.vue'; @@ -104,15 +103,7 @@ /> - - - +
- + import PageHeaderTemplate from 'src/modules/shared/components/page-header-template.vue'; import TimesheetWrapper from 'src/modules/timesheets/components/timesheet-wrapper.vue'; + + import { useTimesheetStore } from 'src/stores/timesheet-store'; - import { useAuthStore } from 'src/stores/auth-store'; - - const auth_store = useAuthStore(); + const timesheet_store = useTimesheetStore(); \ No newline at end of file