Remove domain helper and fix typos

This commit is contained in:
Luka Radenovic 2022-06-10 09:39:24 +02:00
parent e5f06fc7b0
commit af685ce3cc
2 changed files with 2 additions and 5 deletions

View file

@ -1,3 +0,0 @@
export function getDomainName(hostName: string) {
return hostName.substring(hostName.lastIndexOf('.', hostName.lastIndexOf('.') - 1) + 1);
}

View file

@ -42,7 +42,7 @@ const Header: React.FC<HeaderProps> = () => {
const navigationItems = filterNavigationByDashboardRole(isAdmin); const navigationItems = filterNavigationByDashboardRole(isAdmin);
const singOutUrl = `${HYDRA_URL}/oauth2/sessions/logout`; const signOutUrl = `${HYDRA_URL}/oauth2/sessions/logout`;
return ( return (
<> <>
@ -124,7 +124,7 @@ const Header: React.FC<HeaderProps> = () => {
{({ active }) => ( {({ active }) => (
<a <a
onClick={() => logOut()} onClick={() => logOut()}
href={singOutUrl} href={signOutUrl}
className={classNames( className={classNames(
active ? 'bg-gray-100 cursor-pointer' : '', active ? 'bg-gray-100 cursor-pointer' : '',
'block px-4 py-2 text-sm text-gray-700 cursor-pointer', 'block px-4 py-2 text-sm text-gray-700 cursor-pointer',