Skip to content
This repository was archived by the owner on Nov 10, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
11 changes: 4 additions & 7 deletions src/components/PsaBanner/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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&apos;s new official URL is <a href={NEW_URL}>app.safe.global</a>.<br />
We recommend{' '}
<a href={EXPORT_HELP} target="_blank" rel="noreferrer">
exporting your address book
</a>{' '}
as CSV and importing it in the new app.
⚠️ Safe&apos;s new official URL is <a href={NEW_URL}>app.safe.global</a>, with a fully rebranded and refurbished
application.
<br />
The old app will run in parallel and we will announce its deprecation in time.
</>
)
}
Expand Down