Skip to content
This repository was archived by the owner on Nov 10, 2023. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6647ebb

Browse files
authoredDec 5, 2022
Fix: add link to the new app from the export page (#4129)
* Fix: add link to the new app from the export page * Bump version
1 parent 4d77e16 commit 6647ebb

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed
 

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "safe-react",
3-
"version": "3.33.3",
3+
"version": "3.33.4",
44
"description": "Allowing crypto users manage funds in a safer way",
55
"website": "https://github.com/gnosis/safe-react#readme",
66
"bugs": {

‎src/routes/export/Export.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ import { ReactElement } from 'react'
33
import Page from 'src/components/layout/Page'
44
import Block from 'src/components/layout/Block'
55
import DataExport from 'src/routes/safe/components/Settings/DataExport'
6+
import { Paper } from '@material-ui/core'
67

78
function Export(): ReactElement {
89
return (
910
<Page>
1011
<Block>
11-
<DataExport />
12+
<Paper style={{ padding: '24px' }} elevation={0}>
13+
<DataExport />
14+
</Paper>
1215
</Block>
1316
</Page>
1417
)

‎src/routes/safe/components/Settings/DataExport/index.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { ReactElement } from 'react'
2+
import { Link } from '@material-ui/core'
23
import Button from 'src/components/layout/Button'
34
import Heading from 'src/components/layout/Heading'
45
import Paragraph from 'src/components/layout/Paragraph'
@@ -24,9 +25,13 @@ const DataExport = (): ReactElement => {
2425
<>
2526
<Heading tag="h2">Export your data</Heading>
2627
<Paragraph>
27-
Download your local data with your added Safes and address book. You can import it on app.safe.global.
28+
Download your local data with your added Safes and address book. You can import it on{' '}
29+
<Link target="_blank" href="https://app.safe.global/import" color="secondary">
30+
app.safe.global/import
31+
</Link>
32+
.
2833
</Paragraph>
29-
<Button onClick={handleExport} color="primary" size="small" variant="outlined">
34+
<Button onClick={handleExport} color="primary" size="small" variant="contained">
3035
Download
3136
</Button>
3237
</>

0 commit comments

Comments
 (0)
This repository has been archived.