fix: Addressed rustfmt complaints

This commit is contained in:
2025-01-18 15:33:56 -07:00
parent 81cb7a750c
commit b757d66d7a
11 changed files with 20 additions and 44 deletions
@@ -55,13 +55,8 @@ impl<'a, 'b> KeyEventHandler<'a, 'b, ActiveRadarrBlock> for CollectionsHandler<'
if !self.handle_collections_table_events(collections_table_handling_config) {
match self.active_radarr_block {
_ if CollectionDetailsHandler::accepts(self.active_radarr_block) => {
CollectionDetailsHandler::new(
self.key,
self.app,
self.active_radarr_block,
self.context,
)
.handle();
CollectionDetailsHandler::new(self.key, self.app, self.active_radarr_block, self.context)
.handle();
}
_ if EditCollectionHandler::accepts(self.active_radarr_block) => {
EditCollectionHandler::new(self.key, self.app, self.active_radarr_block, self.context)