Quick Chat Picker Modal: Replace history after open chat (#6655)

This commit is contained in:
Alexander Zinchuk 2026-02-22 23:42:53 +01:00
parent 5d5a7beb76
commit 31eaf0e5dd

View File

@ -19,7 +19,7 @@ const QuickChatPickerModal = ({
const isOpen = Boolean(modal);
const handleSelectRecipient = useLastCallback((peerId: string) => {
openChat({ id: peerId });
openChat({ id: peerId, shouldReplaceHistory: true });
closeQuickChatPicker();
});