Skip to content

Commit

Permalink
Pass duringMigration (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
makoto authored Feb 3, 2020
1 parent 09ebe89 commit 7a67a2c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/SingleName/NameDetails.js
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,8 @@ function NameDetails({
tab,
pathname
}) {
const duringMigration = process.env.REACT_APP_MIGRATION_COMPLETE !== 'True'
// const duringMigration = process.env.REACT_APP_MIGRATION_COMPLETE !== 'True'
const duringMigration = true
const [loading, setLoading] = useState(undefined)
const {
data: { isMigrated },
Expand Down Expand Up @@ -565,6 +566,7 @@ function NameDetails({
refetch={refetch}
refetchIsMigrated={refetchIsMigrated}
readOnly={account === EMPTY_ADDRESS}
duringMigration={duringMigration}
/>
)
} else if (
Expand Down

0 comments on commit 7a67a2c

Please sign in to comment.