diff --git a/packages/linea-ens-app/src/components/pages/profile/[name]/registration/RegistrationPoh.tsx b/packages/linea-ens-app/src/components/pages/profile/[name]/registration/RegistrationPoh.tsx index c80d2979e..e11e6f48b 100644 --- a/packages/linea-ens-app/src/components/pages/profile/[name]/registration/RegistrationPoh.tsx +++ b/packages/linea-ens-app/src/components/pages/profile/[name]/registration/RegistrationPoh.tsx @@ -142,7 +142,10 @@ const RegistrationPoh = ({ nameDetails, isLoading }: Props) => { dispatch({ name: 'setProfileData', payload: { - records: [{ key: 'eth', group: 'address', type: 'addr', value: address! }], + records: [ + { key: 'linea', group: 'address', type: 'addr', value: address! }, + { key: 'eth', group: 'address', type: 'addr', value: address! }, + ], clearRecords: resolverExists, resolverAddress: defaultResolverAddress, }, @@ -160,7 +163,9 @@ const RegistrationPoh = ({ nameDetails, isLoading }: Props) => { // If profile is in queue and reverse record is selected, make sure that eth record is included and is set to address if (item.queue.includes('profile') && reverseRecord) { - const recordsWithoutEth = item.records.filter((record) => record.key !== 'eth') + const recordsWithoutEth = item.records.filter( + (record) => record.key !== 'eth' && record.key !== 'linea', + ) const newRecords: ProfileRecord[] = [ { key: 'linea', group: 'address', type: 'addr', value: address! }, { key: 'eth', group: 'address', type: 'addr', value: address! },