Added clearing cache

This commit is contained in:
Patrick Alvin Alcala 2025-10-30 16:28:07 +08:00
parent 49080523b7
commit 015984c4cf

View file

@ -42,7 +42,12 @@ export default () => {
sessionStorage.setItem('registered', JSON.stringify([...registeredNameList]))
}
const clearCache = async () => {
caches.keys()
}
onMount(async () => {
await clearCache()
await getAssessors()
await getRegistered()
})