From 0c51e4c3defcfefe8874dba6b792ef75889eb186 Mon Sep 17 00:00:00 2001 From: Patrick Bennett Date: Fri, 5 Apr 2024 00:10:51 -0400 Subject: [PATCH] fix(ui): switched nfd lookup to use 'brief' view instead of tiny. Tiny view doesn't return the expected app id --- ui/src/components/AddValidatorForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/AddValidatorForm.tsx b/ui/src/components/AddValidatorForm.tsx index 66baa62a..e4130992 100644 --- a/ui/src/components/AddValidatorForm.tsx +++ b/ui/src/components/AddValidatorForm.tsx @@ -89,7 +89,7 @@ export function AddValidatorForm({ constraints }: AddValidatorFormProps) { setIsFetchingAppId(true) try { - const nfd = await fetchNfd(value, { view: 'tiny' }) + const nfd = await fetchNfd(value, { view: 'brief' }) // If we have an app id, clear error if it exists form.clearErrors('nfdForInfo')