chore(ui): Allow clippy::large_enum_variant on TimelineAction.

This enum is large, but it's used in a short period of time, not
collected somewhere, so it's safe to accept a large size here.
This commit is contained in:
Ivan Enderlin
2025-05-16 12:56:25 +02:00
parent bf5e0124ab
commit 8480e0fc55

View File

@@ -148,6 +148,7 @@ pub(super) enum HandleAggregationKind {
/// An action that we want to cause on the timeline.
#[derive(Clone, Debug)]
#[allow(clippy::large_enum_variant)]
pub(super) enum TimelineAction {
/// Add a new timeline item.
///