Skip to content

Commit

Permalink
Merge pull request #2306 from glific/version4.2.1
Browse files Browse the repository at this point in the history
Updated changelog and removed promotion page
  • Loading branch information
mdshamoon authored Jan 23, 2023
2 parents 3d67f5b + cc3d929 commit 5873416
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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": "4.1.8",
"version": "4.1.9",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.3",
Expand Down
5 changes: 3 additions & 2 deletions src/containers/Auth/Auth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -224,7 +224,8 @@ export const Auth = ({
</>
) : null}
</div>
{mode === 'login' && <Promotion />}
{/* commenting the promotion code. This will be added when we will update with new content */}
{/* {mode === 'login' && <Promotion />} */}
</div>
);
};

0 comments on commit 5873416

Please sign in to comment.