From f2749f693f9c8c8511a1290d045b102b1d1f35a1 Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Date: Wed, 8 May 2024 14:47:18 +0530 Subject: [PATCH] [WEB-1211] fix: inbox issue description revalidate (#4388) --- web/components/inbox/content/root.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/web/components/inbox/content/root.tsx b/web/components/inbox/content/root.tsx index 7874b74a5..0049807cd 100644 --- a/web/components/inbox/content/root.tsx +++ b/web/components/inbox/content/root.tsx @@ -30,7 +30,11 @@ export const InboxContentRoot: FC = observer((props) => { : null, workspaceSlug && projectId && inboxIssueId ? () => fetchInboxIssueById(workspaceSlug, projectId, inboxIssueId) - : null + : null, + { + revalidateOnFocus: false, + revalidateIfStale: false, + } ); const isEditable = !!currentProjectRole && currentProjectRole >= EUserProjectRoles.MEMBER;