refactor: rename NoteAction::Quote -> Repost

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-10-04 17:33:05 -04:00
parent 36845c6305
commit 4bb60c6240
3 changed files with 4 additions and 4 deletions

View File

@@ -867,7 +867,7 @@ fn render_note_actionbar(
}
if quote_resp.clicked() {
action = Some(NoteAction::Quote(NoteId::new(*note_id)));
action = Some(NoteAction::Repost(NoteId::new(*note_id)));
}
action = zap_actionbar_button(ui, note_id, note_pubkey, zapper, i18n).or(action);