This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds prettier to fix all identation and other linting issues
- Loading branch information
1 parent
782b81b
commit 96d9c8d
Showing
15 changed files
with
1,022 additions
and
859 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
semi: false | ||
useTabs: false | ||
useTabs: false | ||
tabWidth: 2 | ||
singleQuote: true | ||
bracketSpacing: true |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,13 +1,14 @@ | ||
import { ButtonType } from './types' | ||
|
||
export const NO_WEB3_ERROR: string = 'You need an Ethereum wallet to interact ' + | ||
'with this marketplace. Unlock your wallet, get MetaMask.io or ' + | ||
'Portis on desktop, or get Trust Wallet or Coinbase Wallet on mobile.' | ||
export const NO_WEB3_ERROR: string = | ||
'You need an Ethereum wallet to interact ' + | ||
'with this marketplace. Unlock your wallet, get MetaMask.io or ' + | ||
'Portis on desktop, or get Trust Wallet or Coinbase Wallet on mobile.' | ||
|
||
export const BTN_TEXT: { [index: string]: string } = { | ||
[ButtonType.Manage]: 'manage this item ❯', | ||
[ButtonType.Buy]: 'buy this item ❯', | ||
[ButtonType.View]: 'view on openSea ❯', | ||
[ButtonType.SwitchNetwork]: 'switch to ', | ||
[ButtonType.Unlock]: 'buy this item ❯' | ||
[ButtonType.Manage]: 'manage this item ❯', | ||
[ButtonType.Buy]: 'buy this item ❯', | ||
[ButtonType.View]: 'view on openSea ❯', | ||
[ButtonType.SwitchNetwork]: 'switch to ', | ||
[ButtonType.Unlock]: 'buy this item ❯' | ||
} |
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
Oops, something went wrong.