Skip to content

Commit

Permalink
Remove some warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbejar committed Jul 25, 2024
1 parent 51070b2 commit 3f0832a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ impl MatchEvent for App {
.ui
.chat_history_card_options(id!(chat_history_card_options));
// TODO: Would be cool to listen for this action inside of the widget itself.
chat_history_card_options.selected(cx, chat_id, cords);
let _ = chat_history_card_options.selected(cx, chat_id, cords);
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/chat/chat_history_card.rs
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ impl ChatHistoryCard {
&mut self,
cx: &mut Cx,
actions: &Actions,
scope: &mut Scope,
_scope: &mut Scope,
) {
for action in actions {
if let ChatHistoryCardAction::ActivateTitleEdition(chat_id) =
Expand Down

0 comments on commit 3f0832a

Please sign in to comment.