diff options
author | 2021-03-07 15:27:35 +0000 | |
---|---|---|
committer | 2021-03-07 15:27:35 +0000 | |
commit | 4a704239573e578c592a4dca2668e1b025745c98 (patch) | |
tree | ad5f40e8e76cf4ca5abda43e1198ddee721418f5 /src/pages/LandingPage.tsx | |
parent | Makes Code Inputs TextAreas (diff) | |
parent | Removes Unused OAuth Cleaning (diff) |
Merge pull request #141 from python-discord/discord-oauth
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}/> ))} |