Skip to content

Commit 11de24d

Browse files
committed
fix: cache no-store 로 설정
1 parent 76da218 commit 11de24d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/client/apis/studyDetailApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const studyDetailApi = {
99
`${apiPath.studyDetail}/dashboard?studyId=${studyId}`,
1010
{
1111
next: { tags: [tags.studyDetailDashboard] },
12-
cache: "force-cache",
12+
cache: "no-store",
1313
}
1414
);
1515

apps/client/apis/studyHistoryApi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const studyHistoryApi = {
99
`${apiPath.studyHistory}/assignments?studyId=${studyId}`,
1010
{
1111
next: { tags: [tags.studyHistory] },
12-
cache: "force-cache",
12+
cache: "no-store",
1313
}
1414
);
1515

0 commit comments

Comments
 (0)