aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/LandingPage.tsx
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2021-01-26 12:23:52 +0300
committerGravatar Hassan Abouelela <[email protected]>2021-01-26 12:26:12 +0300
commitdc86560fd0a0c111bfde85189ab5a9421ceb1365 (patch)
tree926dc7b6e4f9fa98aef6794c236fc9041b0d1922 /src/pages/LandingPage.tsx
parentAdds Apple Touch Icon (diff)
Cleans Up Some Warnings
Makes slight modifications to handle some minor warnings. Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'src/pages/LandingPage.tsx')
-rw-r--r--src/pages/LandingPage.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pages/LandingPage.tsx b/src/pages/LandingPage.tsx
index af968ad..06fef46 100644
--- a/src/pages/LandingPage.tsx
+++ b/src/pages/LandingPage.tsx
@@ -17,7 +17,7 @@ function LandingPage(): JSX.Element {
const fetchForms = async () => {
setForms(await getForms());
};
- fetchForms();
+ fetchForms().then();
}, []);
if (!forms) {