Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaMahany committed Jul 24, 2024
1 parent ab3c95a commit 692cb31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ee/indexeddb/test_data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
<script src="main.js" defer></script>
</head>
<body></body>
</html>
</html>
2 changes: 1 addition & 1 deletion ee/indexeddb/test_data/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

// Open database. Second arg is database version. We're not dealing with
// migrations at the moment, so just leave it at 1.
const request = window.indexedDB.open(databaseName, 2);
const request = window.indexedDB.open(databaseName, 1);
request.onupgradeneeded = (event) => {
// Create an object store. We're going to skip creating indices for now
// because this package doesn't make use of them.
Expand Down

0 comments on commit 692cb31

Please sign in to comment.