Update ui/src/components/SignedOutPage.tsx

Co-authored-by: bobby <1544881+desimone@users.noreply.github.com>
This commit is contained in:
Caleb Doxsey 2023-09-21 15:32:41 -06:00 committed by GitHub
parent 11c43eb2ed
commit a61ec706d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ type SignedOutPageProps = {
const SignedOutPage: FC<SignedOutPageProps> = ({ data }) => { const SignedOutPage: FC<SignedOutPageProps> = ({ data }) => {
return ( return (
<Container> <Container>
<Alert color="info">User has been Logged Out</Alert> <Alert color="info">User has been logged out.</Alert>
</Container> </Container>
); );
}; };