Skip to content

Commit

Permalink
feat: allow http connection
Browse files Browse the repository at this point in the history
  • Loading branch information
begonaalvarezd committed Oct 17, 2023
1 parent a150caf commit 34bd292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/components/NodeConfigurationForm.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
return Promise.reject({ type: 'validationError', error: formError })
}
const errorUrlValidity = checkNodeUrlValidity(currentClientOptions?.nodes, node.url, isDeveloperProfile)
const errorUrlValidity = checkNodeUrlValidity(currentClientOptions?.nodes, node.url, true)
if (errorUrlValidity) {
formError = localize(errorUrlValidity) ?? ''
return Promise.reject({ type: 'validationError', error: formError })
Expand Down

0 comments on commit 34bd292

Please sign in to comment.