Skip to content
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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

AbstractFruitFactory
Copy link
Contributor

No description provided.

Copy link

Phylum Report Link

@AbstractFruitFactory AbstractFruitFactory force-pushed the PTD-1253-console-remove-trailing-from-claimed-websites-in-configure-metadata-page branch from c325461 to 79881fd Compare October 11, 2024 12:38
Copy link

sonarcloud bot commented Oct 11, 2024

Copy link

github-actions bot commented Oct 11, 2024

Docker tags
docker.io/radixdlt/dapps-console:8a0ef4515c5d6fcf67e1ee34b8876d6ed579838c-stokenet

@@ -37,7 +37,7 @@
if (isValidUrl(value)) {
http
.post('api/claimed-website', {
url: value,
url: value.endsWith('/') ? value.slice(0, -1) : value,
Copy link
Contributor

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

Copy link
Contributor

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants