Silence warnings, run cargo fmt

This commit is contained in:
Evan Carroll 2026-01-18 16:27:31 -06:00
parent fe1c1d3655
commit af1c767f5f
77 changed files with 1904 additions and 903 deletions

View file

@ -1,4 +1,9 @@
#![recursion_limit = "256"]
// Server builds don't use browser-specific code guarded by #[cfg(feature = "hydrate")]
#![cfg_attr(
not(feature = "hydrate"),
allow(unused_variables, dead_code, unused_imports)
)]
//! User UI components for chattyness.
//!
//! This crate provides the public user-facing interface including:
@ -30,7 +35,7 @@ pub mod pages;
pub mod routes;
pub mod utils;
pub use app::{shell, App};
pub use app::{App, shell};
pub use routes::UserRoutes;
#[cfg(feature = "ssr")]