From cc3d929882609dad8e06b89d6afcc8fb98a80010 Mon Sep 17 00:00:00 2001 From: mdshamoon Date: Mon, 23 Jan 2023 19:24:09 +0530 Subject: [PATCH] updated changelog and removed promotion page --- CHANGELOG.md | 14 +++++++++++++- package.json | 2 +- src/containers/Auth/Auth.tsx | 5 +++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8db41f4cd..562853a75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). -#### [v4.1.8](https://github.com/glific/glific-frontend/compare/v4.1.7...v4.1.8) +#### [v4.2.1](https://github.com/glific/glific-frontend/compare/v4.2.0...v4.2.1) + +> 23 January 2022 + +- Minor issue fixes [`#2304`](https://github.com/glific/glific-frontend/pull/2304) +- Cypress testing fixes [`#2302`](https://github.com/glific/glific-frontend/pull/2302) +- Tags cleanup from codebase [`#2299`](https://github.com/glific/glific-frontend/pull/2299) +- Package updates [`#2301`](https://github.com/glific/glific-frontend/pull/2301) +- Fix simulator remove profile [`#2298`](https://github.com/glific/glific-frontend/pull/2298) +- Cache yarn dependency for unit test [`#2297`](https://github.com/glific/glific-frontend/pull/2297) +- Fixed simulator subscription issue [`#2248`](https://github.com/glific/glific-frontend/pull/2248) + +#### [v4.2.0](https://github.com/glific/glific-frontend/compare/v4.1.7...v4.2.0) > 5 January 2022 diff --git a/package.json b/package.json index 908e80a3d..790e81eed 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "glific-frontend", - "version": "4.1.8", + "version": "4.1.9", "private": true, "dependencies": { "@apollo/client": "^3.7.3", diff --git a/src/containers/Auth/Auth.tsx b/src/containers/Auth/Auth.tsx index f6fcd3814..eab827059 100644 --- a/src/containers/Auth/Auth.tsx +++ b/src/containers/Auth/Auth.tsx @@ -9,7 +9,7 @@ import { ReactComponent as WhatsAppIcon } from 'assets/images/icons/Social/Whats import { termsOfUse } from 'containers/Organization/Organization'; import { Button } from 'components/UI/Form/Button/Button'; import GlificLogo from 'assets/images/logo/Logo.svg'; -import { Promotion } from './Promotion/Promotion'; +// import { Promotion } from './Promotion/Promotion'; import styles from './Auth.module.css'; export interface AuthProps { @@ -224,7 +224,8 @@ export const Auth = ({ ) : null} - {mode === 'login' && } + {/* commenting the promotion code. This will be added when we will update with new content */} + {/* {mode === 'login' && } */} ); };