Skip to content

Commit

Permalink
show version on beginning
Browse files Browse the repository at this point in the history
  • Loading branch information
Mazuh committed Oct 29, 2023
1 parent aee5978 commit 6f1d62c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/features/auth/AuthMain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Box from "@mui/material/Box";
import Button from "@mui/material/Button";
import Typography from "@mui/material/Typography";
import GoogleIcon from "@mui/icons-material/Google";
import pkg from "../../../package.json";
import HomeTemplate from "../../components/templates/HomeTemplate";
import { useAppDispatch, useAppSelector } from "../../state";
import { login, selectIsUserPendingAuthentication } from "../../state/user";
Expand All @@ -24,7 +25,7 @@ export default function AuthMain() {
<Box component="span" pr={1}>
Video conference app.
</Box>
<Box component="span">A proof of concept.</Box>
<Box component="span">A proof of concept. (v{pkg.version})</Box>
</Typography>
<Button
onClick={handleLoginClick}
Expand Down

0 comments on commit 6f1d62c

Please sign in to comment.