Skip to content

Commit

Permalink
give app more unique id
Browse files Browse the repository at this point in the history
to reduce conflicts
  • Loading branch information
DougAnderson444 committed Jun 23, 2024
1 parent df7478f commit 306d20b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions packages/integrity-wallet/inner-app/index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Svelte</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Svelte</title>
</head>
<body>
<div id="integrity-wallet-app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion packages/integrity-wallet/inner-app/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import '../../../../submodules/seed-keeper/crates/seed-keeper-wit-ui/output.css'
import App from './App.svelte';

const app = new App({
target: document.getElementById('app')
target: document.getElementById('integrity-wallet-app')
});

export default app;

0 comments on commit 306d20b

Please sign in to comment.