From 402e52f79e3c84f3d2ae1382af1cfb02287548da Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 14:57:03 +0000 Subject: [PATCH] fix: hide proposal scheduled time if submission is not accepted Only show the scheduled time and 'View Invitation' button in My Proposals when the submission status is 'accepted'. Fixes #4583 Co-authored-by: Marco Acierno --- .../my-proposals-profile-page-handler/my-proposals-table.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/my-proposals-profile-page-handler/my-proposals-table.tsx b/frontend/src/components/my-proposals-profile-page-handler/my-proposals-table.tsx index 20e5eb58b3..47916b6314 100644 --- a/frontend/src/components/my-proposals-profile-page-handler/my-proposals-table.tsx +++ b/frontend/src/components/my-proposals-profile-page-handler/my-proposals-table.tsx @@ -37,7 +37,8 @@ export const MyProposalsTable = ({ submissions }: Props) => { { - const inSchedule = row.scheduleItems.length > 0; + const isAccepted = row.status === "accepted"; + const inSchedule = isAccepted && row.scheduleItems.length > 0; return [