Skip to content

Commit dc77522

Browse files
style: fix import order and trailing newline
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c01905a commit dc77522

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/hooks/useResolvedReferrer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import { EMPTY_BYTES32 } from '@ensdomains/ensjs/utils'
66

77
import { useQueryOptions } from '@app/hooks/useQueryOptions'
88
import { ConfigWithEns, CreateQueryKey, QueryConfig } from '@app/types'
9+
import { isValidEnsName } from '@app/utils/ensValidation'
910
import { prepareQueryOptions } from '@app/utils/prepareQueryOptions'
1011
import { useQuery } from '@app/utils/query/useQuery'
1112
import { getReferrerHex } from '@app/utils/referrer'
12-
import { isValidEnsName } from '@app/utils/ensValidation'
1313

1414
type UseResolvedReferrerParameters = {
1515
referrer?: string

src/utils/referrer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ export const getReferrerHex = (referrer: string | undefined): `0x${string}` => {
1919
// Use viem's pad utility to pad to 32 bytes
2020
return pad(referrer, { size: 32 })
2121
}
22-

0 commit comments

Comments
 (0)