setting default team to view as when user is first loaded

This commit is contained in:
Carter 2025-03-07 15:18:30 -06:00
parent d19d37410e
commit 89b964fef6
3 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,6 @@ import { makeStyles } from "@mui/styles";
import { LockOpen, Person, Lock, Settings, SupervisedUserCircle as TeamIcon, ExitToApp, PersonAdd } from "@mui/icons-material";
import { useState } from "react";
import UserTeamName from "./UserTeamName";
import React from "react";
import ThemeIcon from "../common/ThemeIcon";
import { useAuth0 } from "@auth0/auth0-react";
import UserSettings from "./UserSettings";
@ -150,7 +149,7 @@ export default function UserMenu(props: Props) {
const unauthenticatedUserMenu = () => {
return (
<React.Fragment>
<>
<Button
variant="outlined"
aria-label="Sign In"
@ -171,7 +170,7 @@ export default function UserMenu(props: Props) {
<IconButton onClick={toggleTheme} className={classes.rightIcon} aria-label="Toggle Theme">
<ThemeIcon />
</IconButton>
</React.Fragment>
</>
);
};