diff --git a/src/features/ui/components/modals/actions-modal.tsx b/src/features/ui/components/modals/actions-modal.tsx index 2641cf2e9..0ba512e3e 100644 --- a/src/features/ui/components/modals/actions-modal.tsx +++ b/src/features/ui/components/modals/actions-modal.tsx @@ -29,7 +29,7 @@ const ActionsModal: React.FC = ({ status, actions, onClick, onClo const { icon = null, text, meta = null, href = '#', to, destructive } = action; const Comp = href === '#' ? to ? Link : 'button' : 'a'; - const compProps = href === '#' ? to ? { to, onClick } : { onClick } : { href: href, rel: 'noopener' }; + const compProps = href === '#' ? to ? { to, onClick } : { onClick } : { href: href, rel: 'noopener', target: '_blank' }; return (