From c7a7fa52111baa58893af0ce0c921e94f7e159b7 Mon Sep 17 00:00:00 2001 From: Jony Bursztyn Date: Tue, 28 May 2024 20:26:14 +0100 Subject: [PATCH] feat: push Privacy policy date to 2024 Jun 18 12:00 UTC (#9767) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Admin override of the CLA bot ## **Description** Sets the time for the new privacy policy for 2024 Jun 18 12:00 UTC, so that the feature is not released yet. This is until we figure out a correct date for the feature. ## **Related issues** Fixes: ## **Manual testing steps** ## **Screenshots/Recordings** ### **Before** ### **After** ## **Pre-merge author checklist** - [ ] I’ve followed [MetaMask Coding Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [ ] I've completed the PR template to the best of my ability - [ ] I’ve included tests if applicable - [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [ ] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. ## **Pre-merge reviewer checklist** - [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots. --------- Co-authored-by: David Walsh Co-authored-by: sethkfman <10342624+sethkfman@users.noreply.github.com> --- app/reducers/legalNotices/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/reducers/legalNotices/index.ts b/app/reducers/legalNotices/index.ts index b61c78a31d8..f476a3c7a73 100644 --- a/app/reducers/legalNotices/index.ts +++ b/app/reducers/legalNotices/index.ts @@ -2,7 +2,7 @@ import { RootState } from '..'; import { Action } from 'redux'; import ACTIONS from './types'; -export const newPrivacyPolicyDate = new Date('2024-06-04T00:00:00Z'); +export const newPrivacyPolicyDate = new Date('2024-06-18T12:00:00Z'); const initialState = { newPrivacyPolicyToastClickedOrClosed: false,