Skip to content

Commit

Permalink
fix: lints
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbchron committed Feb 20, 2024
1 parent b15ee96 commit 6985b5e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions crates/bl/src/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ use bytes::Bytes;
use clients::surreal::SurrealRootClient;
use color_eyre::eyre::Result;
use core_types::{
CoreId, Photo, PhotoArtifacts, PhotoGroup, PhotoGroupUploadMeta,
PrivateArtifact, PublicArtifact,
Photo, PhotoArtifacts, PhotoGroup, PhotoGroupUploadMeta, PrivateArtifact,
PublicArtifact,
};
use serde::{Deserialize, Serialize};
use surrealdb::opt::PatchOp;
use tracing::instrument;

use crate::model_ext::ModelExt;
Expand Down
2 changes: 1 addition & 1 deletion crates/site-app/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub fn App() -> impl IntoView {
outside_errors.insert_with_default_key(AppError::NotFound);
view! { <ErrorTemplate outside_errors/> }.into_view()
}>
<div data-theme="light" class="w-full min-h-screen flex flex-col items-stretch justify-stretch bg-base-200">
<div data-theme="wireframe" class="w-full min-h-screen flex flex-col items-stretch justify-stretch bg-base-200">
<Navbar/>
<Routes>
<Route path="" view=pages::home_page::HomePage/>
Expand Down
2 changes: 1 addition & 1 deletion crates/site-app/style/tailwind/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
},
plugins: [require("daisyui")],
daisyui: {
themes: true,
themes: ["light", "dark", "wireframe"],
prefix: "d-",
},
};

0 comments on commit 6985b5e

Please sign in to comment.