diff options
author | 2021-01-17 02:41:24 +0300 | |
---|---|---|
committer | 2021-01-17 02:41:24 +0300 | |
commit | 1f02ab5c692801709221d4e27f3001a40cb4e8ae (patch) | |
tree | 2956aef6deda89c3a319f96027c9c4c8915b78ee /src/pages | |
parent | Shows 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.tsx | 4 |
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); } }); |