diff options
author | 2021-03-07 18:48:43 +0200 | |
---|---|---|
committer | 2021-03-07 18:48:43 +0200 | |
commit | 11151894702fab1a06e3dfe9eca43d4596b5290e (patch) | |
tree | c74483bd5327751ef54a486d7bdcf20eed418919 /src/pages/LandingPage.tsx | |
parent | Add margin to bottom of captcha (diff) | |
parent | Renables OAuth Button On Failure (diff) |
Merge branch 'main' into hcaptcha
Diffstat (limited to 'src/pages/LandingPage.tsx')
-rw-r--r-- | src/pages/LandingPage.tsx | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/pages/LandingPage.tsx b/src/pages/LandingPage.tsx index 06fef46..efb3f05 100644 --- a/src/pages/LandingPage.tsx +++ b/src/pages/LandingPage.tsx @@ -4,7 +4,6 @@ import { useEffect, useState } from "react"; import HeaderBar from "../components/HeaderBar"; import FormListing from "../components/FormListing"; -import OAuth2Button from "../components/OAuth2Button"; import Loading from "../components/Loading"; import ScrollToTop from "../components/ScrollToTop"; @@ -28,16 +27,8 @@ function LandingPage(): JSX.Element { <HeaderBar/> <ScrollToTop/> <div> - <div css={css` - display: flex; - align-items: center; - flex-direction: column; - `}> + <div css={css`display: flex; align-items: center; flex-direction: column;`}> <h1>Available Forms</h1> - - <OAuth2Button/> - - {forms.map(form => ( <FormListing key={form.id} form={form}/> ))} |