Skip to content

Commit

Permalink
update types for build
Browse files Browse the repository at this point in the history
  • Loading branch information
Liz Johnson committed Sep 17, 2023
1 parent 8a9801d commit 34619d7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion frontend/src/components/ParticipantsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import Box from '@mui/material/Box';
import {AppBar, Toolbar } from "@mui/material";
import useParticipants from "../hooks/useParticipants";
import type {NextPage} from 'next';
import SignUpForm from "../components/signUpForm";
import {Typography} from "@material-ui/core";

const ParticipantsList = () => {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Navbar from './Navbar'
import {AppBar, Toolbar } from "@mui/material";

export default function Layout({ children }) {
export default function Layout({ children }: any) {
return (
<>
<AppBar position="static" sx={{ bgcolor: "pink" }}>
Expand Down

0 comments on commit 34619d7

Please sign in to comment.