This repository was archived by the owner on Nov 10, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
safe/components/Settings/DataExport Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " safe-react" ,
3
- "version" : " 3.33.3 " ,
3
+ "version" : " 3.33.4 " ,
4
4
"description" : " Allowing crypto users manage funds in a safer way" ,
5
5
"website" : " https://github.com/gnosis/safe-react#readme" ,
6
6
"bugs" : {
Original file line number Diff line number Diff line change @@ -3,12 +3,15 @@ import { ReactElement } from 'react'
3
3
import Page from 'src/components/layout/Page'
4
4
import Block from 'src/components/layout/Block'
5
5
import DataExport from 'src/routes/safe/components/Settings/DataExport'
6
+ import { Paper } from '@material-ui/core'
6
7
7
8
function Export ( ) : ReactElement {
8
9
return (
9
10
< Page >
10
11
< Block >
11
- < DataExport />
12
+ < Paper style = { { padding : '24px' } } elevation = { 0 } >
13
+ < DataExport />
14
+ </ Paper >
12
15
</ Block >
13
16
</ Page >
14
17
)
Original file line number Diff line number Diff line change 1
1
import { ReactElement } from 'react'
2
+ import { Link } from '@material-ui/core'
2
3
import Button from 'src/components/layout/Button'
3
4
import Heading from 'src/components/layout/Heading'
4
5
import Paragraph from 'src/components/layout/Paragraph'
@@ -24,9 +25,13 @@ const DataExport = (): ReactElement => {
24
25
< >
25
26
< Heading tag = "h2" > Export your data</ Heading >
26
27
< 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
+ .
28
33
</ Paragraph >
29
- < Button onClick = { handleExport } color = "primary" size = "small" variant = "outlined " >
34
+ < Button onClick = { handleExport } color = "primary" size = "small" variant = "contained " >
30
35
Download
31
36
</ Button >
32
37
</ >
You can’t perform that action at this time.
0 commit comments