From 72e761ca37d3b3e772e473cca82f5d9003c86e42 Mon Sep 17 00:00:00 2001 From: Pavlo Myroniuk Date: Sat, 1 Apr 2023 13:20:33 +0300 Subject: [PATCH] feat(crypto-helper): make crypto-helper default page again --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 4cead0a1..91ee3151 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,7 +34,7 @@ enum Route { fn switch(routes: Route) -> Html { match routes { - Route::Home => html! { }, + Route::Home => html! { }, Route::CryptoHelper => html! { }, Route::Jwt => html! { }, Route::About => html! { },