diff --git a/src/app/components/nav/Header.tsx b/src/app/components/nav/Header.tsx index 9644e2e..043f07a 100644 --- a/src/app/components/nav/Header.tsx +++ b/src/app/components/nav/Header.tsx @@ -207,6 +207,7 @@ export default function Header({ setGlobalLoggingOut }: HeaderProps) { try { const res = await fetch(url, { method: 'GET', + cache: 'no-store', credentials: 'include', headers: { 'Content-Type': 'application/json', diff --git a/src/app/referral-management/page.tsx b/src/app/referral-management/page.tsx index e5c9621..e2431e2 100644 --- a/src/app/referral-management/page.tsx +++ b/src/app/referral-management/page.tsx @@ -130,6 +130,7 @@ function ReferralManagementPageInner() { try { const res = await fetch(url, { method: 'GET', + cache: 'no-store', credentials: 'include', headers: { 'Content-Type': 'application/json',