From f813e07226a016856b59b79233378d40246663e3 Mon Sep 17 00:00:00 2001 From: akanshaaaa19 Date: Fri, 28 Jun 2024 18:39:03 +0530 Subject: [PATCH 1/5] updated the pricing --- src/containers/SettingList/Billing/Billing.tsx | 2 +- src/containers/SettingList/Providers/Providers.tsx | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/containers/SettingList/Billing/Billing.tsx b/src/containers/SettingList/Billing/Billing.tsx index fa08f82f1..8060323da 100644 --- a/src/containers/SettingList/Billing/Billing.tsx +++ b/src/containers/SettingList/Billing/Billing.tsx @@ -362,7 +362,7 @@ export const BillingForm = () => {
Monthly Recurring
- INR 7,500 ($110) + INR 9,500 ($114)
+ taxes
From 76f645ca932612318ccb67f9ad78e67f58f6a013 Mon Sep 17 00:00:00 2001 From: akanshaaaa19 Date: Sun, 30 Jun 2024 12:07:11 +0530 Subject: [PATCH 3/5] clean up --- src/containers/SettingList/Billing/Billing.tsx | 2 +- src/containers/SettingList/Providers/Providers.tsx | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/containers/SettingList/Billing/Billing.tsx b/src/containers/SettingList/Billing/Billing.tsx index 0824efa72..9618c928a 100644 --- a/src/containers/SettingList/Billing/Billing.tsx +++ b/src/containers/SettingList/Billing/Billing.tsx @@ -351,7 +351,7 @@ export const BillingForm = () => {
One time setup
- INR 15000 ($220) + INR 15,000 ($220)
+ taxes
    diff --git a/src/containers/SettingList/Providers/Providers.tsx b/src/containers/SettingList/Providers/Providers.tsx index dd1b574f0..ddfff0965 100644 --- a/src/containers/SettingList/Providers/Providers.tsx +++ b/src/containers/SettingList/Providers/Providers.tsx @@ -55,8 +55,6 @@ export const Providers = () => { Object.assign(fields, secretsObj); Object.keys(fields).forEach((key) => { // restore value of the field - console.log(fields[key]); - states[key] = fields[key]; }); states.isActive = item.isActive; From 21ebabdad7694c42fdffb3f68bb9a552b5b92295 Mon Sep 17 00:00:00 2001 From: akanshaaaa19 Date: Mon, 1 Jul 2024 15:47:17 +0530 Subject: [PATCH 4/5] changed pricing values --- src/containers/SettingList/Billing/Billing.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/containers/SettingList/Billing/Billing.tsx b/src/containers/SettingList/Billing/Billing.tsx index 9618c928a..1d3581e16 100644 --- a/src/containers/SettingList/Billing/Billing.tsx +++ b/src/containers/SettingList/Billing/Billing.tsx @@ -351,7 +351,7 @@ export const BillingForm = () => {
    One time setup
    - INR 15,000 ($220) + INR 15,000 ($200)
    + taxes
      @@ -362,12 +362,11 @@ export const BillingForm = () => {
      Monthly Recurring
      - INR 9,500 ($114) + INR 9,500 ($120)
      + taxes
      • upto 250k messages
      • -
      • 1-10 users
    From 8280081586c984445a7c405d5d2bbd920639d97e Mon Sep 17 00:00:00 2001 From: akanshaaaa19 Date: Tue, 2 Jul 2024 08:25:28 +0530 Subject: [PATCH 5/5] updated the package version --- package.json | 2 +- src/components/UI/Form/EmojiInput/Editor.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6f1b7fc11..006c8daf0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "glific-frontend", - "version": "6.0.10", + "version": "6.0.11", "private": true, "type": "module", "dependencies": { diff --git a/src/components/UI/Form/EmojiInput/Editor.tsx b/src/components/UI/Form/EmojiInput/Editor.tsx index e2f53f543..c5c1b8259 100644 --- a/src/components/UI/Form/EmojiInput/Editor.tsx +++ b/src/components/UI/Form/EmojiInput/Editor.tsx @@ -42,7 +42,7 @@ export const Editor = ({ disabled = false, ...props }: EditorProps) => { const [editor] = useLexicalComposerContext(); useEffect(() => { - if (defaultValue) { + if (defaultValue || defaultValue === '') { setDefaultValue(editor, defaultValue); } }, [defaultValue]);