Skip to content

Commit

Permalink
fix(unlock-app): fixing the lockAddress param for metadata editor
Browse files Browse the repository at this point in the history
  • Loading branch information
julien51 committed Oct 10, 2024
1 parent 39e5310 commit 6da13bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { UpdateMetadataForm } from '~/components/interface/locks/metadata'

const LocksMetadataContent = () => {
const searchParams = useSearchParams()
const lockAddress = searchParams.get('address')?.toLowerCase()
const lockAddress = searchParams.get('lockAddress')?.toLowerCase()
const network = searchParams.get('network')
? Number(searchParams.get('network'))
: undefined
Expand Down

0 comments on commit 6da13bc

Please sign in to comment.