From 91deb37c6282a807a83211c22fe55120c2a69b5e Mon Sep 17 00:00:00 2001 From: Natsumi Date: Wed, 21 Jan 2026 17:26:34 +1300 Subject: [PATCH] Fix notification delete button --- src/views/Notifications/columns.jsx | 69 ++++++++++++++--------------- 1 file changed, 34 insertions(+), 35 deletions(-) diff --git a/src/views/Notifications/columns.jsx b/src/views/Notifications/columns.jsx index f31e4af6..3b3f1c47 100644 --- a/src/views/Notifications/columns.jsx +++ b/src/views/Notifications/columns.jsx @@ -782,43 +782,42 @@ export const createColumns = ({ ) : null} - - {showDeleteLog ? ( - - - - - - - - {t( - 'view.notification.actions.delete_log' - )} - - - - - ) : null} ) : null} + {showDeleteLog ? ( + + + + + + + + {t( + 'view.notification.actions.delete_log' + )} + + + + + ) : null} ); }