diff --git a/crates/ascend/src/components/header.rs b/crates/ascend/src/components/header.rs
index 5de0423..941557b 100644
--- a/crates/ascend/src/components/header.rs
+++ b/crates/ascend/src/components/header.rs
@@ -18,17 +18,17 @@ pub fn Header(items: HeaderItems) -> impl IntoView {
view! {
// Left side of header
-
+
// Expanding space in the middle
-
-
-
+
+
+
// Right side of header
-
diff --git a/crates/ascend/src/pages/edit_wall.rs b/crates/ascend/src/pages/edit_wall.rs
index 28d95b7..2b1e0b6 100644
--- a/crates/ascend/src/pages/edit_wall.rs
+++ b/crates/ascend/src/pages/edit_wall.rs
@@ -41,7 +41,10 @@ pub fn EditWall() -> impl leptos::IntoView {
// Left gradient chunk
@@ -66,7 +69,10 @@ pub fn EditWall() -> impl leptos::IntoView {
// Right gradient chunk
@@ -92,8 +98,10 @@ fn Ready(data: InitialData) -> impl leptos::IntoView {
view! {
-
"Click hold to replace image"
-
{holds}
}
+
"Click hold to replace image"
+
{holds}
+
+ }
}
#[component]
diff --git a/flake.nix b/flake.nix
index bcc230d..398e6c1 100644
--- a/flake.nix
+++ b/flake.nix
@@ -56,7 +56,7 @@
];
buildPhase = ''
- cargo leptos build --release -vvv
+ LEPTOS_HASH_FILES=true cargo leptos build --release -vvv
'';
installPhase = ''
@@ -141,6 +141,9 @@
# For optimizing wasm release builds
pkgs.binaryen
];
+
+ env.RUST_LOG = "info,ascend=trace";
+ env.LEPTOS_HASH_FILES = "true";
};
};
}