Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
kent-3 committed Aug 16, 2024
1 parent 1a0cd29 commit 909e4ad
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />


<script type="module" nonce="/LUoH0RFoBSJUTKnCIhnfQ==">
import init, * as bindings from 'https://kent-3.github.io/secret-leptos/secret-leptos-b98ea99ef209074.js';
const wasm = await init('https://kent-3.github.io/secret-leptos/secret-leptos-b98ea99ef209074_bg.wasm');
<script type="module" nonce="qXS5VgL5Jew+kpko0YEUnQ==">
import init, * as bindings from 'https://kent-3.github.io/secret-leptos/secret-leptos-7ece901574e36fd6.js';
const wasm = await init('https://kent-3.github.io/secret-leptos/secret-leptos-7ece901574e36fd6_bg.wasm');


window.wasmBindings = bindings;
Expand Down
File renamed without changes.
Binary file not shown.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,17 +250,17 @@ pub fn App() -> impl IntoView {
</div>
<hr />
<nav>
<A exact=true href="/">
<A exact=true href="/secret-leptos/">
"Home"
</A>
<A href="keplr">"Keplr"</A>
<A href="/secret-leptos/keplr">"Keplr"</A>
</nav>
<hr />
</header>
<main class="outline outline-1 outline-offset-8 outline-neutral-500">
<Routes fallback=|| "This page could not be found.">
<Route path=StaticSegment("/") view=|| view! { <Home /> } />
<Route path=StaticSegment("keplr") view=|| view! { <KeplrTests /> } />
<Route path=StaticSegment("/secret-leptos/") view=|| view! { <Home /> } />
<Route path=StaticSegment("/secret-leptos/keplr") view=|| view! { <KeplrTests /> } />
</Routes>
</main>
<LoadingModal when=enable_keplr_action.pending() message="Requesting Connection" />
Expand Down

0 comments on commit 909e4ad

Please sign in to comment.