Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
i404788 authored Oct 17, 2024
1 parent 1ca1545 commit 3bb35d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kicanvas/services/vfs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3bb35d0

Please sign in to comment.