From b266277ec0ac58a5cf9b93eb85dc5279551a3372 Mon Sep 17 00:00:00 2001 From: lumijiez <59575049+lumijiez@users.noreply.github.com> Date: Tue, 24 Jun 2025 17:56:46 +0300 Subject: [PATCH] cleanup --- webui/src/app/components/hooks/useRoles.js | 1 - 1 file changed, 1 deletion(-) diff --git a/webui/src/app/components/hooks/useRoles.js b/webui/src/app/components/hooks/useRoles.js index c68a391..6519472 100644 --- a/webui/src/app/components/hooks/useRoles.js +++ b/webui/src/app/components/hooks/useRoles.js @@ -47,7 +47,6 @@ export const useRoles = () => { return roleNames.every(roleName => hasRole(roleName)); }; - // Common role checks based on your existing logic const isMerchant = hasAnyRole(['merchant', 'admin']); const isAdmin = hasRole('admin'); const isCustomer = hasRole('customer');