Skip to content

Commit

Permalink
fix: constant naming error (#1764)
Browse files Browse the repository at this point in the history
* useWriteBaseEnsTextRecords.ts

* Update apps/web/src/hooks/useWriteBaseEnsTextRecords.ts

---------

Co-authored-by: Daniel Schlabach <[email protected]>
  • Loading branch information
intls and dschlabach authored Mar 6, 2025
1 parent 2243244 commit 39d4769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/hooks/useWriteBaseEnsTextRecords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ export default function useWriteBaseEnsTextRecords({
) as UsernameTextRecordKeys[];
return keys.filter((key) => {
const existingValue = existingTextRecords[key].trim();
const updatedValueValue = updatedTextRecords[key].trim();
const updatedValue = updatedTextRecords[key].trim();

return existingValue != updatedValueValue;
return existingValue != updatedValue;
});
}, [existingTextRecords, updatedTextRecords]);

Expand Down

0 comments on commit 39d4769

Please sign in to comment.