From d0bc6627f2752ceaa05d6782cadc006c0406f625 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Sun, 5 Mar 2023 13:12:20 +0530 Subject: [PATCH] fix: explore page is now at root --- src/pages/routes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/routes.rs b/src/pages/routes.rs index 6c1ad64..6123f65 100644 --- a/src/pages/routes.rs +++ b/src/pages/routes.rs @@ -34,7 +34,7 @@ pub struct Pages { impl Pages { /// create new instance of Routes const fn new() -> Pages { - let explore = "/explore"; + let explore = "/"; let home = explore; let search = "/search"; let auth = Auth::new();