From 45c0de9767dc8791babeef641445ab056843ebc1 Mon Sep 17 00:00:00 2001 From: Michael Fatemi Date: Tue, 13 Jul 2021 18:33:23 -0400 Subject: [PATCH] make login in header pressable --- src/components/Header/Header.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx index a41db6a..fe02ffb 100644 --- a/src/components/Header/Header.tsx +++ b/src/components/Header/Header.tsx @@ -1,6 +1,8 @@ +import authorizationEndpoint from '../Authentication/authorizationEndpoint'; import logout from '../Authentication/logout'; import { useMe, useNotifications } from '../hooks'; import Notifications from '../Notifications/Notifications'; +import UILink from '../UI/UILink'; import UIPressable from '../UI/UIPressable'; import UIPrimaryTitle from '../UI/UIPrimaryTitle'; @@ -29,7 +31,7 @@ export default function Header() { )} ) : ( - Log In + Log in )} );