REFACTOR for consistent syntax

This commit is contained in:
2025-06-25 17:04:18 +02:00
parent 7c64649c22
commit 9c2fb9b710
6 changed files with 16 additions and 14 deletions

View File

@@ -31,7 +31,9 @@ const Topbar = ({sidebarToggled, setSidebarToggled, user, className}: props) =>
/>
<Dropdown label={user.name}>
<DropdownItem item="Logout" onClick={() => globalThis.location.href = logoutUrl} className={"text-red-500 font-medium"} />
<DropdownItem item="Logout"
onClick={() => globalThis.location.href = logoutUrl}
className={"text-red-500 font-medium"} />
</Dropdown>
</div>
) :