Skip to content

Commit

Permalink
fix: persistence warning banner links to issue
Browse files Browse the repository at this point in the history
  • Loading branch information
elsirion committed Sep 12, 2023
1 parent 66837ff commit c3151a1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/components/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,18 @@ pub fn App(cx: Scope) -> impl IntoView {
<h1 class="font-heading text-gray-900 text-4xl font-semibold mb-6">"Join a Federation"</h1>
<div class="bg-orange-100 border-l-4 border-orange-500 text-orange-700 p-4 mb-8" role="alert">
<p class="font-bold">Warning</p>
<p>This demo lacks persistent storage, reloading the bowser tab will reset all state and burn all deposited funds.</p>
<p> "This demo lacks persistent storage, reloading the bowser tab will reset all state and burn all deposited funds." </p>
<p
class="mt-2"
>
<a
href="https://github.com/elsirion/webimint-rs/issues/31"
class="underline text-orange-600 hover:text-orange-800"
target="_blank"
>
"Want to fix this? Take a look at issue #31 😃"
</a>
</p>
</div>
<SubmitForm
description="Enter invite code (i.e. fed11jpr3lgm8t…) to join a Federation".into()
Expand Down

0 comments on commit c3151a1

Please sign in to comment.