-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove trailing slash #997
base: main
Are you sure you want to change the base?
remove trailing slash #997
Conversation
c325461
to
79881fd
Compare
Quality Gate passed for 'radixdlt_console'Issues Measures |
Docker tags |
@@ -37,7 +37,7 @@ | |||
if (isValidUrl(value)) { | |||
http | |||
.post('api/claimed-website', { | |||
url: value, | |||
url: value.endsWith('/') ? value.slice(0, -1) : value, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately, the intention was to show validation error rather than silently change it for the user
For the developer console, I don't think we should be silently trying to make corrections like this. What the user enters is what is used. If there's a problem, we should show errors, but the user should fix themselves.
link
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also, this is not about checking it's status but rather what we put in the manifest and I don't see any changes about that?
No description provided.