web/storage: remove getStorageQuota()

not used anymore
This commit is contained in:
jj
2025-04-30 17:17:23 +00:00
parent b3f151f3cb
commit 893c6edde7

View File

@@ -64,11 +64,3 @@ export const clearFileStorage = async () => {
} }
} }
} }
export const getStorageQuota = async () => {
let estimate;
if (navigator.storage.estimate) {
estimate = await navigator.storage.estimate();
}
return estimate;
}