diff --git a/.changeset/fuzzy-plants-hammer.md b/.changeset/fuzzy-plants-hammer.md new file mode 100644 index 0000000000000..5b4f0a647f889 --- /dev/null +++ b/.changeset/fuzzy-plants-hammer.md @@ -0,0 +1,5 @@ +--- +'@rocket.chat/meteor': minor +--- + +Changes the position of the buttons in Unique ID change detected modal in order to highlight configuration update instead of new workspace diff --git a/apps/meteor/client/components/FingerprintChangeModal.tsx b/apps/meteor/client/components/FingerprintChangeModal.tsx index e583604d0544e..353193e50a337 100644 --- a/apps/meteor/client/components/FingerprintChangeModal.tsx +++ b/apps/meteor/client/components/FingerprintChangeModal.tsx @@ -21,8 +21,8 @@ const FingerprintChangeModal = ({ onConfirm, onCancel, onClose }: FingerprintCha onConfirm={onConfirm} onClose={onClose} onCancel={onCancel} - confirmText={t('New_workspace')} - cancelText={t('Configuration_update')} + confirmText={t('Configuration_update')} + cancelText={t('New_workspace')} > { if (openModal) { setModal( dispatch({ type: 'openConfirmation', newWorkspace: true })} - onCancel={() => dispatch({ type: 'openConfirmation', newWorkspace: false })} + onConfirm={() => dispatch({ type: 'openConfirmation', newWorkspace: false })} + onCancel={() => dispatch({ type: 'openConfirmation', newWorkspace: true })} onClose={() => dispatch({ type: 'closeModal' })} />, );