aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-07-10 00:16:16 +0100
committerGravatar Joe Banks <[email protected]>2024-07-10 01:51:05 +0100
commitf7f64ab9aab7204a045a43f37d59f7956918ede8 (patch)
tree6cb3c42568d28f1f259d0fdad65fee32b5d04e95 /src/pages
parentAdd new linting config (diff)
Remove unused linting ignores
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/FormPage/FormPage.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pages/FormPage/FormPage.tsx b/src/pages/FormPage/FormPage.tsx
index 05b51c0..9ffa4fc 100644
--- a/src/pages/FormPage/FormPage.tsx
+++ b/src/pages/FormPage/FormPage.tsx
@@ -69,7 +69,6 @@ function FormPage(): JSX.Element {
useEffect(() => {
// ID can't be null due to the routing to get here
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
getForm(id!).then(form => {
setForm(form);
setFormLoading(LoadingState.Found);