diff --git a/mint-manager/src/components/on_chain.rs b/mint-manager/src/components/on_chain.rs index d8d23ef..4ba27d1 100644 --- a/mint-manager/src/components/on_chain.rs +++ b/mint-manager/src/components/on_chain.rs @@ -174,7 +174,7 @@ impl Component for OnChain { } View::NewAddress(address) => { html! { - <> + <>

{"Generated Address"}

@@ -185,49 +185,47 @@ impl Component for OnChain { // - + } } View::Send => { html! { - <> -
-
- - -
+ <>
- - -
-
- - -
-
+ + + +
+ + +
+
+ + +
+ - - } + } } View::Sent(txid) => { html! { - <> + <>

{"Txid"}

{ txid.to_string() }

- // TODO: Copy button // -
+ + - } + } } } } - } + } } }