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.3",
"version": "3.33.4",
"description": "Allowing crypto users manage funds in a safer way",
"website": "https://github.com/gnosis/safe-react#readme",
"bugs": {
Expand Down
5 changes: 4 additions & 1 deletion src/routes/export/Export.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@ import { ReactElement } from 'react'
import Page from 'src/components/layout/Page'
import Block from 'src/components/layout/Block'
import DataExport from 'src/routes/safe/components/Settings/DataExport'
import { Paper } from '@material-ui/core'

function Export(): ReactElement {
return (
<Page>
<Block>
<DataExport />
<Paper style={{ padding: '24px' }} elevation={0}>
<DataExport />
</Paper>
</Block>
</Page>
)
Expand Down
9 changes: 7 additions & 2 deletions src/routes/safe/components/Settings/DataExport/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ReactElement } from 'react'
import { Link } from '@material-ui/core'
import Button from 'src/components/layout/Button'
import Heading from 'src/components/layout/Heading'
import Paragraph from 'src/components/layout/Paragraph'
Expand All @@ -24,9 +25,13 @@ const DataExport = (): ReactElement => {
<>
<Heading tag="h2">Export your data</Heading>
<Paragraph>
Download your local data with your added Safes and address book. You can import it on app.safe.global.
Download your local data with your added Safes and address book. You can import it on{' '}
<Link target="_blank" href="https://app.safe.global/import" color="secondary">
app.safe.global/import
</Link>
.
</Paragraph>
<Button onClick={handleExport} color="primary" size="small" variant="outlined">
<Button onClick={handleExport} color="primary" size="small" variant="contained">
Download
</Button>
</>
Expand Down