Update admin to use no-store (#6421)

Prevents cache issues after updating records
This commit is contained in:
Aiden Foxx
2021-06-22 15:20:04 +02:00
committed by GitHub
parent 53eee85b1b
commit 55a57eaede

View File

@@ -8,7 +8,7 @@ const api = axios.create({
baseURL: getRootPath(),
withCredentials: true,
headers: {
'Cache-Control': 'no-cache',
'Cache-Control': 'no-store',
},
});