-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #424 from ensdomains/dev
Version 1.1.4
- Loading branch information
Showing
28 changed files
with
1,320 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
export default [ | ||
// 0 | ||
{ | ||
state: 'ENABLE_DNSSEC', | ||
title: 'Problem fetching data from DNS', | ||
displayError: true | ||
}, | ||
// 1 | ||
{ | ||
state: 'ENABLE_DNSSEC', | ||
title: 'DNS entry does not exist.', | ||
displayError: true | ||
}, | ||
// 2 | ||
{ | ||
state: 'ENABLE_DNSSEC', | ||
title: 'Please enable DNSSEC' | ||
}, | ||
// 3 | ||
{ | ||
state: 'ADD_TEXT', | ||
title: 'Please add text record into _ens.name.tld' | ||
}, | ||
// 4, | ||
{ | ||
state: 'ADD_TEXT', | ||
title: 'DNS Record is invalid', | ||
displayError: true | ||
}, | ||
// 5, | ||
{ | ||
state: 'SUBMIT_PROOF', | ||
title: 'Ready to register', | ||
explainer: | ||
"*Click 'refresh' if you make changes to the domain in the DNS Registrar." | ||
}, | ||
// 6, | ||
{ | ||
state: 'SUBMIT_PROOF', | ||
title: 'DNS is out of sync', | ||
explainer: | ||
"The Controller and DNS Owner are out of sync. Click 'sync' to make the DNS Owner the Controller. Click 'refresh' if you make changes to the domain in the DNS Registrar.", | ||
outOfSync: true | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react' | ||
import styled from '@emotion/styled' | ||
|
||
const Button = styled('span')` | ||
color: white; | ||
background: #c7d3e3; | ||
border-radius: 6px; | ||
border: 1px solid #ededed; | ||
padding: 0 2px; | ||
` | ||
|
||
const You = () => { | ||
return <Button>You</Button> | ||
} | ||
|
||
export default You |
Oops, something went wrong.