[WEB-1211] fix: inbox issue description revalidate (#4388)

This commit is contained in:
Aaryan Khandelwal 2024-05-08 14:47:18 +05:30 committed by GitHub
parent 3b17dc51ba
commit f2749f693f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,7 +30,11 @@ export const InboxContentRoot: FC<TInboxContentRoot> = observer((props) => {
: null,
workspaceSlug && projectId && inboxIssueId
? () => fetchInboxIssueById(workspaceSlug, projectId, inboxIssueId)
: null
: null,
{
revalidateOnFocus: false,
revalidateIfStale: false,
}
);
const isEditable = !!currentProjectRole && currentProjectRole >= EUserProjectRoles.MEMBER;