|
|
@ -53,6 +53,10 @@ export default class ExperimentalTab extends PureComponent { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
renderCollectibleDetectionToggle() { |
|
|
|
renderCollectibleDetectionToggle() { |
|
|
|
|
|
|
|
if (!process.env.COLLECTIBLES_V1) { |
|
|
|
|
|
|
|
return null; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
const { t } = this.context; |
|
|
|
const { t } = this.context; |
|
|
|
const { |
|
|
|
const { |
|
|
|
useCollectibleDetection, |
|
|
|
useCollectibleDetection, |
|
|
@ -93,6 +97,9 @@ export default class ExperimentalTab extends PureComponent { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
renderOpenSeaEnabledToggle() { |
|
|
|
renderOpenSeaEnabledToggle() { |
|
|
|
|
|
|
|
if (!process.env.COLLECTIBLES_V1) { |
|
|
|
|
|
|
|
return null; |
|
|
|
|
|
|
|
} |
|
|
|
const { t } = this.context; |
|
|
|
const { t } = this.context; |
|
|
|
const { openSeaEnabled, setOpenSeaEnabled } = this.props; |
|
|
|
const { openSeaEnabled, setOpenSeaEnabled } = this.props; |
|
|
|
|
|
|
|
|
|
|
|