aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2020-10-05 14:00:01 +0100
committerGravatar GitHub <[email protected]>2020-10-05 14:00:01 +0100
commitee7f4bddc1b28bbf1fa774ccdd19bcfc877ed27d (patch)
tree25ae815006452b260efe0714325144231542e69a /src/pages
parentMerge pull request #15 from python-discord/forms/add-form-page (diff)
parentExperiment concluded that hash the best choice (diff)
Merge pull request #16 from python-discord/animation/page-loading-animation
Update page loading animation
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/FormPage.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/FormPage.tsx b/src/pages/FormPage.tsx
index 45c093a..a675f8e 100644
--- a/src/pages/FormPage.tsx
+++ b/src/pages/FormPage.tsx
@@ -2,7 +2,7 @@
import { jsx } from "@emotion/core";
import { Link } from "react-router-dom";
-import { DotLoader } from "react-spinners";
+import { HashLoader } from "react-spinners";
import { useParams } from "react-router";
import HeaderBar from "../components/HeaderBar";
@@ -17,7 +17,7 @@ function Loading() {
return <div>
<HeaderBar title={"Loading..."}/>
<div css={{display: "flex", justifyContent: "center"}}>
- <DotLoader color="white"/>
+ <HashLoader color="white"/>
</div>
</div>
}