Skip to content

Commit

Permalink
Merge pull request #151 from hack4impact-calpoly/demo_day_branch
Browse files Browse the repository at this point in the history
fix: signout not valoid and lint error
  • Loading branch information
bbmcmann authored May 30, 2023
2 parents eeb251a + a95e8c4 commit 542090d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions src/components/authentication/notValidated.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React from "react";
import styled from "styled-components";
import { Container, Col, Row } from "react-bootstrap";
import "firebase/auth";
import HeaderWithNav from "../navigation/nav-header";

const StyledDiv = styled.div`
height: 100vh;
Expand Down Expand Up @@ -38,6 +39,7 @@ const StyledCol = styled(Col)`
export default function Discussion() {
return (
<StyledDiv>
<HeaderWithNav />
<StyledContainer fluid>
<StyledRow>
<StyledCol sm={12} md={8} lg={6} xl={5}>
Expand Down
8 changes: 4 additions & 4 deletions src/components/pages/schedule/calendar/newCalendar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ const StyledButton = styled.button`
}
`;

const StyledDiv = styled.div`
padding: 10px;
font-size: 18px;
`;
// const StyledDiv = styled.div`
// padding: 10px;
// font-size: 18px;
// `;

export default function NewCalendar() {
const [showShiftModal, setShiftModal] = useState(false);
Expand Down

0 comments on commit 542090d

Please sign in to comment.