Skip to content

Commit ed8192d

Browse files
committed
Remove some warnings
1 parent 5e41c03 commit ed8192d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ impl MatchEvent for App {
335335
.ui
336336
.chat_history_card_options(id!(chat_history_card_options));
337337
// TODO: Would be cool to listen for this action inside of the widget itself.
338-
chat_history_card_options.selected(cx, chat_id, cords);
338+
let _ = chat_history_card_options.selected(cx, chat_id, cords);
339339
}
340340
}
341341
}

src/chat/chat_history_card.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ impl ChatHistoryCard {
355355
&mut self,
356356
cx: &mut Cx,
357357
actions: &Actions,
358-
scope: &mut Scope,
358+
_scope: &mut Scope,
359359
) {
360360
for action in actions {
361361
if let ChatHistoryCardAction::ActivateTitleEdition(chat_id) =

0 commit comments

Comments
 (0)