Skip to content

Commit

Permalink
Merge pull request #574 from ensdomains/permissions-fix
Browse files Browse the repository at this point in the history
Exception for parent logic when parent is .eth
  • Loading branch information
LeonmanRolls authored Aug 21, 2023
2 parents f970122 + 5b78dec commit b235a69
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const NameChangePermissions = ({
const { prepareDataInput } = useTransactionFlow()
const showRevokePermissionsInput = prepareDataInput('RevokePermissions')

const isParentLocked = parentState === 'locked'
const isParentLocked = parentState === 'locked' || wrapperData?.parent.IS_DOT_ETH

const permissions = CHILD_FUSES_WITHOUT_CBF.reduce<{ burned: FuseItem[]; unburned: FuseItem[] }>(
(acc, permission) => {
Expand Down

0 comments on commit b235a69

Please sign in to comment.