fix(curriculum): add trim to remove whitespaces in url (#60226)

This commit is contained in:
Ajay A
2025-05-08 15:56:41 +05:30
committed by GitHub
parent a169c2a7b1
commit 074e310b82
@@ -64,7 +64,7 @@ Your anchor (`a`) element should link to `https://freecatphotoapp.com`. You have
```js
assert.equal(
document.querySelectorAll('a')[2]?.getAttribute('href'),
document.querySelectorAll('a')[2]?.getAttribute('href').trim(),
'https://freecatphotoapp.com'
);
```