Skip to content

Commit 067ab14

Browse files
authored
Merge pull request #291 from hackdays-io/fix/name-stone-signup-bug
fix: type casting for exact match search parameter of name stone sear…
2 parents 365268a + a0b4912 commit 067ab14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/frontend/app/routes/api.namestone.$action.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export const action: ActionFunction = async ({ request, params }) => {
5757
const existingNames = await ns.searchNames({
5858
domain,
5959
name,
60-
exact_match: true,
60+
exact_match: 1 as unknown as boolean,
6161
});
6262

6363
// If name exists and is owned by a different address, throw error

0 commit comments

Comments
 (0)