From b30c52d7b5929731a13d9e0ddd03a019a4029f8d Mon Sep 17 00:00:00 2001 From: Bikash Date: Wed, 26 Jun 2024 11:12:17 +0530 Subject: [PATCH 1/2] added about us page & changed signup to join waitlist cta to signup --- web/.prettierrc.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 web/.prettierrc.json diff --git a/web/.prettierrc.json b/web/.prettierrc.json new file mode 100644 index 000000000..544138be4 --- /dev/null +++ b/web/.prettierrc.json @@ -0,0 +1,3 @@ +{ + "singleQuote": true +} From 82d4fb6f61c4c1fa42313accd7c18c421074240c Mon Sep 17 00:00:00 2001 From: Bikash Date: Thu, 27 Jun 2024 12:58:07 +0530 Subject: [PATCH 2/2] fix eslint for unescaped string --- web/.eslintrc.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/web/.eslintrc.yml b/web/.eslintrc.yml index aff44cbbb..a8907fe08 100644 --- a/web/.eslintrc.yml +++ b/web/.eslintrc.yml @@ -4,3 +4,4 @@ extends: rules: no-case-declarations: 0 no-restricted-syntax: 0 + react/no-unescaped-entities: 0