Skip to content

Commit

Permalink
remove trailing slash
Browse files Browse the repository at this point in the history
  • Loading branch information
AbstractFruitFactory committed Oct 11, 2024
1 parent 0740975 commit c325461
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
if (isValidUrl(value)) {
http
.post('api/claimed-website', {
url: value,
url: value.endsWith('/') ? value.slice(0, -1) : value,
expectedAddress: entityAddress
})
.then(({ output }) => {
Expand Down

0 comments on commit c325461

Please sign in to comment.