0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-29 13:22:40 +00:00

"Refactor admin UI components: update class names, element types, and nesting in admin.jsx, notificationLookup.jsx, and notificationUtils.jsx"

This commit is contained in:
Víctor Losada Hernández
2024-08-31 12:51:06 +02:00
parent 10ce696333
commit e88272c684
3 changed files with 7 additions and 8 deletions

View File

@@ -129,7 +129,7 @@ const NotificationLookup = () => {
}
return (
<div className="notificationsList">
<div className="notificationList">
{notifications.map((notification) => (
<details key={notification.dismissKey}>
<summary>{notification.title || 'No Title'}</summary>

View File

@@ -5,11 +5,10 @@ const NotificationAdd = require('./notificationAdd/notificationAdd.jsx');
const NotificationUtils = () => {
return (
<>
<section className='notificationUtils'>
<NotificationAdd />
<hr />
<NotificationLookup />
</>
</section>
);
};