diff --git a/client/src/api.rs b/client/src/api.rs
index 4ca6589..5c23c84 100644
--- a/client/src/api.rs
+++ b/client/src/api.rs
@@ -1,4 +1,4 @@
-// CONFIGURATION HELPERS
+// CONFIGURATION HELPERS
pub fn api_base() -> &'static str {
option_env!("API_URL").unwrap_or("http://localhost:3000")
}
diff --git a/client/src/app.rs b/client/src/app.rs
index 776be65..b0cf2d2 100644
--- a/client/src/app.rs
+++ b/client/src/app.rs
@@ -1,7 +1,11 @@
+use crate::components::protected::ProtectedRoute;
+use crate::pages::{
+ admin::AdminPage, analytics::AnalyticsPage, blogs::BlogsPage, create::CreatePage,
+ dashboard::DashboardPage, docs::DocsPage, embed::EmbedPage, home::LandingPage,
+ policy::PolicyPage, view::ViewPage,
+};
use leptos::*;
use leptos_router::*;
-use crate::components::protected::ProtectedRoute;
-use crate::pages::{home::LandingPage, dashboard::DashboardPage, create::CreatePage, view::ViewPage, embed::EmbedPage, docs::DocsPage, blogs::BlogsPage, analytics::AnalyticsPage, admin::AdminPage, policy::PolicyPage};
#[component]
pub fn App() -> impl IntoView {
@@ -23,8 +27,8 @@ pub fn App() -> impl IntoView {
"Please try again later or contact the owner."
"Are you the owner?"
- "Request More Compute" - @@ -34,4 +34,4 @@ pub fn LimitReached() -> impl IntoView {