Skip to content

Commit

Permalink
Merge pull request #122 from rhashimoto/fix-imports
Browse files Browse the repository at this point in the history
Fix file demo imports.
  • Loading branch information
rhashimoto authored Oct 31, 2023
2 parents 9f5f748 + 42639d7 commit 43b6ff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/file/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as VFS from "../../src/VFS";
import { IDBBatchAtomicVFS } from "../../src/examples/IDBBatchAtomicVFS";
import * as VFS from "../../src/VFS.js";
import { IDBBatchAtomicVFS } from "../../src/examples/IDBBatchAtomicVFS.js";

const SEARCH_PARAMS = new URLSearchParams(location.search);
const IDB_NAME = SEARCH_PARAMS.get('idb') ?? 'sqlite-vfs';
Expand Down

0 comments on commit 43b6ff4

Please sign in to comment.