diff options
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/assets.rs | 3 | ||||
| -rw-r--r-- | src/ui/routes/login.rs | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/ui/assets.rs b/src/ui/assets.rs index 142cdf9..642679b 100644 --- a/src/ui/assets.rs +++ b/src/ui/assets.rs @@ -54,10 +54,9 @@ pub enum Error { impl IntoResponse for Error { fn into_response(self) -> Response { - #[allow(clippy::match_wildcard_for_single_variants)] match self { Self::NotFound(_) => NotFound(self.to_string()).into_response(), - other => Internal::from(other).into_response(), + Self::Mime(_) => Internal::from(self).into_response(), } } } diff --git a/src/ui/routes/login.rs b/src/ui/routes/login.rs index 81a874c..39d45b9 100644 --- a/src/ui/routes/login.rs +++ b/src/ui/routes/login.rs @@ -4,7 +4,6 @@ pub mod get { ui::assets::{Asset, Assets}, }; - #[allow(clippy::unused_async)] pub async fn handler() -> Result<Asset, Internal> { Assets::index() } |
