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;