From a1ac0cd2c82b2d92128f74b700f0e9b0220dce5b Mon Sep 17 00:00:00 2001 From: kernelkind Date: Sun, 25 May 2025 18:25:34 -0400 Subject: [PATCH] appease clippy not sure why this warning is only now showing up Signed-off-by: kernelkind --- crates/notedeck_chrome/src/app.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/notedeck_chrome/src/app.rs b/crates/notedeck_chrome/src/app.rs index 87e62adb..bf44aae1 100644 --- a/crates/notedeck_chrome/src/app.rs +++ b/crates/notedeck_chrome/src/app.rs @@ -2,6 +2,7 @@ use notedeck::{AppAction, AppContext}; use notedeck_columns::Damus; use notedeck_dave::Dave; +#[allow(clippy::large_enum_variant)] pub enum NotedeckApp { Dave(Dave), Columns(Damus),