Skip to content

Commit

Permalink
fix: cache no-store 로 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
SeieunYoo committed Sep 7, 2024
1 parent 76da218 commit 11de24d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/client/apis/studyDetailApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const studyDetailApi = {
`${apiPath.studyDetail}/dashboard?studyId=${studyId}`,
{
next: { tags: [tags.studyDetailDashboard] },
cache: "force-cache",
cache: "no-store",
}
);

Expand Down
2 changes: 1 addition & 1 deletion apps/client/apis/studyHistoryApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const studyHistoryApi = {
`${apiPath.studyHistory}/assignments?studyId=${studyId}`,
{
next: { tags: [tags.studyHistory] },
cache: "force-cache",
cache: "no-store",
}
);

Expand Down

0 comments on commit 11de24d

Please sign in to comment.