From 264da36e8a5e736aeee37943813f13e059d8b77a Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Thu, 9 Jan 2025 17:21:16 +0700 Subject: [PATCH] refactor: add type date accepted and submitted --- src/stores/task-order/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stores/task-order/types.ts b/src/stores/task-order/types.ts index 3ad17425..12abe09f 100644 --- a/src/stores/task-order/types.ts +++ b/src/stores/task-order/types.ts @@ -63,6 +63,8 @@ export interface UserTask { taskOrderId: string; userId: string; userTaskStatus: UserTaskStatus; + acceptedAt?: Date | string; + submittedAt?: Date | string; } export interface Institution {