From 8294821a96a9a0ccd87f724171a787b3f8552608 Mon Sep 17 00:00:00 2001 From: hampus-fluxer Date: Tue, 6 Jan 2026 01:35:40 +0100 Subject: [PATCH] fix(app): don't suppress toast when copying user id in popout (#38) --- fluxer_app/src/components/popouts/UserAreaPopout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fluxer_app/src/components/popouts/UserAreaPopout.tsx b/fluxer_app/src/components/popouts/UserAreaPopout.tsx index 5198414a..b59d2597 100644 --- a/fluxer_app/src/components/popouts/UserAreaPopout.tsx +++ b/fluxer_app/src/components/popouts/UserAreaPopout.tsx @@ -315,14 +315,14 @@ export const UserAreaPopout = observer(() => { if (!currentUserId) { return; } - TextCopyActionCreators.copy(i18n, currentUserId, true); + TextCopyActionCreators.copy(i18n, currentUserId); }, [currentUserId, i18n]); const handleCopyUserTag = React.useCallback(() => { if (!currentUser) { return; } - TextCopyActionCreators.copy(i18n, currentUser.tag, true); + TextCopyActionCreators.copy(i18n, currentUser.tag); }, [currentUser, i18n]); const openManageAccounts = React.useCallback(() => {