Skip to content

Commit

Permalink
Merge pull request #30 from picture-pro/minor-fixes
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
johnbchron authored Feb 21, 2024
2 parents f30df37 + 503fc06 commit bbeb939
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# linker = "clang"
# rustflags = ["-C", "link-arg=-fuse-ld=mold"]

[target.aarch_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=mold"]
# [target.aarch64-unknown-linux-gnu]
# linker = "clang"
# rustflags = ["-Clink-arg=-fuse-ld=mold"]
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions crates/site-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ cfg-if.workspace = true
thiserror.workspace = true
serde.workspace = true
bytes = { workspace = true, optional = true }
image = { workspace = true, optional = true }
tracing = { workspace = true, optional = true }

validator = "0.16.1"
Expand All @@ -34,6 +33,6 @@ default = []
hydrate = ["leptos/hydrate", "leptos_meta/hydrate", "leptos_router/hydrate"]
ssr = [
"leptos/ssr", "leptos/tracing", "leptos_meta/ssr", "leptos_router/ssr", "dep:leptos_axum",
"auth", "bl", "bytes", "image", "tracing"
"auth", "bl", "bytes", "tracing"
]

2 changes: 1 addition & 1 deletion crates/site-app/src/pages/home_page.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub fn HomePage() -> impl IntoView {

view! {
<super::SmallPageWrapper>
<div class="d-card-body gap-4 w-64">
<div class="d-card-body gap-4">
<p class="text-2xl font-semibold tracking-tight">"Welcome to PicturePro!"</p>
{ match user {
Some(user) => view! {
Expand Down

0 comments on commit bbeb939

Please sign in to comment.