From 45f258dffd27f1f0ff1c7825faed89693c88617e Mon Sep 17 00:00:00 2001 From: Rafael Solorzano <61289255+rafasdc@users.noreply.github.com> Date: Fri, 15 Nov 2024 10:49:24 -0800 Subject: [PATCH] fix: add withdrawn to status external check on history --- app/components/Analyst/History/HistoryContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/Analyst/History/HistoryContent.tsx b/app/components/Analyst/History/HistoryContent.tsx index 1b36e510cf..2ea6df6835 100644 --- a/app/components/Analyst/History/HistoryContent.tsx +++ b/app/components/Analyst/History/HistoryContent.tsx @@ -361,7 +361,7 @@ const HistoryContent = ({ if (tableName === 'application_status') { const isReceived = item === 'received'; - const isExternal = item.includes('applicant_'); + const isExternal = item.includes('applicant_') || item === 'withdrawn'; return (