Skip to content

Commit

Permalink
Fix finding registry route
Browse files Browse the repository at this point in the history
  • Loading branch information
cykoder committed Oct 8, 2024
1 parent 6d0672a commit 70bba63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/api/find-registry.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default async (req, res) => {
}

const result = await fetch(
`${dockUrl}/registries?did=${encodeURIComponent(req.query.did)}&type=${encodeURIComponent(req.query.searchType)}`,
`${dockUrl}/registries?did=${encodeURIComponent(req.query.did)}&type=${encodeURIComponent(req.query.type)}`,
{
method: 'GET',
headers: {
Expand Down

0 comments on commit 70bba63

Please sign in to comment.