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 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" : {
Original file line number Diff line number Diff line change @@ -3,12 +3,15 @@ import { ReactElement } from 'react'
33import Page from 'src/components/layout/Page'
44import Block from 'src/components/layout/Block'
55import DataExport from 'src/routes/safe/components/Settings/DataExport'
6+ import { Paper } from '@material-ui/core'
67
78function 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 )
Original file line number Diff line number Diff line change 11import { ReactElement } from 'react'
2+ import { Link } from '@material-ui/core'
23import Button from 'src/components/layout/Button'
34import Heading from 'src/components/layout/Heading'
45import 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 </ >
You can’t perform that action at this time.
0 commit comments