aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2021-01-17 02:41:24 +0300
committerGravatar Hassan Abouelela <[email protected]>2021-01-17 02:41:24 +0300
commit1f02ab5c692801709221d4e27f3001a40cb4e8ae (patch)
tree2956aef6deda89c3a319f96027c9c4c8915b78ee /src/pages
parentShows Pointer On Scroll Button (diff)
Updates Switch Statement Indent
Changes the switch statement indentation level to 1 in the eslint config, and updates files accordingly. Signed-off-by: Hassan Abouelela <[email protected]>
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 2d34b3c..c49b9fd 100644
--- a/src/pages/FormPage.tsx
+++ b/src/pages/FormPage.tsx
@@ -177,8 +177,8 @@ function FormPage(): JSX.Element {
// TODO: Parse input from each question, and submit
switch (question.type) {
- default:
- console.log(question.id, prop.props.public_state);
+ default:
+ console.log(question.id, prop.props.public_state);
}
});