diff --git a/src/kicanvas/services/vfs.ts b/src/kicanvas/services/vfs.ts index 8a0470c..e8686e0 100644 --- a/src/kicanvas/services/vfs.ts +++ b/src/kicanvas/services/vfs.ts @@ -55,7 +55,7 @@ export class FetchFileSystem extends VirtualFileSystem { #resolve(filepath: string | URL): URL { if (typeof filepath === 'string') { - let cached_url = this.urls.get(filepath); + const cached_url = this.urls.get(filepath); if (cached_url) { return cached_url; } else {