Skip to content

Commit

Permalink
Merge pull request #2952 from glific/pricing-update
Browse files Browse the repository at this point in the history
Updated with new pricing
  • Loading branch information
akanshaaa19 authored Jul 2, 2024
2 parents 622f256 + 8280081 commit 775dab1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "glific-frontend",
"version": "6.0.10",
"version": "6.0.11",
"private": true,
"type": "module",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/UI/Form/EmojiInput/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const Editor = ({ disabled = false, ...props }: EditorProps) => {
const [editor] = useLexicalComposerContext();

useEffect(() => {
if (defaultValue) {
if (defaultValue || defaultValue === '') {
setDefaultValue(editor, defaultValue);
}
}, [defaultValue]);
Expand Down
7 changes: 3 additions & 4 deletions src/containers/SettingList/Billing/Billing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ export const BillingForm = () => {
<div>
<div className={styles.Heading}>One time setup</div>
<div className={styles.Pricing}>
<span>INR 15000</span> ($220)
<span>INR 15,000</span> ($200)
</div>
<div className={styles.Pricing}>+ taxes</div>
<ul className={styles.List}>
Expand All @@ -362,12 +362,11 @@ export const BillingForm = () => {
<div>
<div className={styles.Heading}>Monthly Recurring</div>
<div className={styles.Pricing}>
<span>INR 7,500</span> ($110)
<span>INR 9,500</span> ($120)
</div>
<div className={styles.Pricing}>+ taxes</div>
<ul className={styles.List}>
<li>upto 250k messages</li>
<li>1-10 users</li>
</ul>
</div>
</div>
Expand All @@ -382,7 +381,7 @@ export const BillingForm = () => {
<div className={styles.BottomSection}>
<div className={styles.InactiveHeading}>
Suspended or inactive accounts:{' '}
<span className={styles.Amount}> INR 4,500/mo + taxes</span>
<span className={styles.Amount}> INR 1,500/mo + taxes</span>
</div>
</div>
</div>
Expand Down

0 comments on commit 775dab1

Please sign in to comment.