add email to header

This commit is contained in:
Michael Fatemi 2021-08-17 02:02:27 -04:00
parent 1fbea6c999
commit a5e781daf6
2 changed files with 2 additions and 0 deletions

1
.env
View File

@ -1,2 +1,3 @@
REACT_APP_API_LOCAL=http://localhost:5000/
REACT_APP_API_PROD=https://api.wheelshare.app/
REACT_APP_API_LOCAL0=https://api.wheelshare.app/

View File

@ -28,6 +28,7 @@ export default function Header() {
{me ? (
<>
{me.name}
{me.email && ` (${me.email})`}
<UIPressable onClick={logout}>Log out</UIPressable>
<br />
{notifications.length > 0 ? (