From 318ea03344693131fe552192667c36e73b79db43 Mon Sep 17 00:00:00 2001 From: thesimplekid Date: Sun, 16 Jul 2023 22:53:05 -0400 Subject: [PATCH] refactor: format html --- mint-manager/src/components/on_chain.rs | 44 ++++++++++++------------- 1 file changed, 21 insertions(+), 23 deletions(-) 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 // -
+ + - } + } } } } - } + } } }