From 5723858e6329c0af0b6f16940a11c72823081304 Mon Sep 17 00:00:00 2001 From: Aaron Cook Date: Wed, 9 Nov 2022 11:43:15 +0100 Subject: [PATCH] fix: adjust banner text (#4117) * fix: adjust banner text * fix: add full stop * fix: add break * fix: bump version --- package.json | 2 +- src/components/PsaBanner/index.tsx | 11 ++++------- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 33742106d2..75e6b02a2c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "safe-react", - "version": "3.33.1", + "version": "3.33.2", "description": "Allowing crypto users manage funds in a safer way", "website": "https://github.com/gnosis/safe-react#readme", "bugs": { diff --git a/src/components/PsaBanner/index.tsx b/src/components/PsaBanner/index.tsx index ac8bd502ee..eaba975a3f 100644 --- a/src/components/PsaBanner/index.tsx +++ b/src/components/PsaBanner/index.tsx @@ -9,17 +9,14 @@ import styles from './index.module.scss' const NEW_URL = 'https://app.safe.global' const WARNING_BANNER = 'WARNING_BANNER' -const EXPORT_HELP = 'https://help.gnosis-safe.io/en/articles/5299068-address-book-export-and-import' const WebCoreBanner = (): ReactElement | null => { return ( <> - ⚠️ Safe's new official URL is app.safe.global.
- We recommend{' '} - - exporting your address book - {' '} - as CSV and importing it in the new app. + ⚠️ Safe's new official URL is app.safe.global, with a fully rebranded and refurbished + application. +
+ The old app will run in parallel and we will announce its deprecation in time. ) }