mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 14:01:45 +02:00
fix: build errors (#1959)
This commit is contained in:
@@ -174,7 +174,7 @@ export const clearOPFS = async (force = false) => {
|
||||
return;
|
||||
}
|
||||
// ts-ignore
|
||||
for await (const entry of root.values()) {
|
||||
for await (const entry of (root as any)?.values()) {
|
||||
if (entry.kind === "directory" && entry.name.startsWith(".ahp-")) {
|
||||
// A lock with the same name as the directory protects it from
|
||||
// being deleted.
|
||||
|
||||
Reference in New Issue
Block a user