fix(curriculum): update registration form step 48 to have borderBottomStyle set to none (#67159)

This commit is contained in:
Jeevankumar S
2026-04-29 01:44:45 +05:30
committed by GitHub
parent 40836e70fd
commit 44b560b185
@@ -26,8 +26,8 @@ assert.exists(new __helpers.CSSHelp(document).getStyle('fieldset:last-of-type'))
Your `fieldset:last-of-type` should have `border-bottom` set as `none`.
```js
const borderBottom = new __helpers.CSSHelp(document).getStyle('fieldset:last-of-type')?.borderBottom;
assert(borderBottom === 'none' || borderBottom === 'medium none' || borderBottom === 'medium');
const borderBottomStyle = new __helpers.CSSHelp(document).getStyle('fieldset:last-of-type')?.borderBottomStyle;
assert.equal(borderBottomStyle, 'none');
```
# --seed--