diff --git a/src/article/components/ArticleTitle/index.tsx b/src/article/components/ArticleTitle/index.tsx index 8a3ada61..6501f351 100644 --- a/src/article/components/ArticleTitle/index.tsx +++ b/src/article/components/ArticleTitle/index.tsx @@ -31,6 +31,7 @@ export default function ArticleTitle() { { ...getArticleQueryOptions({ articleId }), enabled: !workbookId, + staleTime: Infinity, }, { ...getArticleWithWorkbookQueryOptions({ @@ -38,6 +39,7 @@ export default function ArticleTitle() { articleId, }), enabled: Boolean(workbookId), + staleTime: Infinity, }, ], }); diff --git a/src/article/components/EmailContentTemplate/index.tsx b/src/article/components/EmailContentTemplate/index.tsx index e297734c..25da324c 100644 --- a/src/article/components/EmailContentTemplate/index.tsx +++ b/src/article/components/EmailContentTemplate/index.tsx @@ -18,6 +18,7 @@ export default function EmailContentTemplate() { { ...getArticleQueryOptions({ articleId }), enabled: !workbookId, + staleTime: Infinity, }, { ...getArticleWithWorkbookQueryOptions({ @@ -25,6 +26,7 @@ export default function EmailContentTemplate() { articleId, }), enabled: Boolean(workbookId), + staleTime: Infinity, }, ], });