fix: improve step 2 instruction and fix indentation in profile card workshop (#60837)
Some checks failed
i18n - Build Validation / Validate i18n Builds (22) (push) Has been cancelled
CI - Node.js / Lint (22) (push) Has been cancelled
DOCR - Cleanup Container Images / Delete Old Images (learn-api, dev) (push) Has been cancelled
DOCR - Cleanup Container Images / Delete Old Images (learn-api, org) (push) Has been cancelled
CI - Node.js / Build (22) (push) Has been cancelled
CI - Node.js / Test (22) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (22) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 22) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 22) (push) Has been cancelled

Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com>
This commit is contained in:
Shreya Kaushal 2025-06-13 20:16:37 +05:30 committed by GitHub
parent c052649ece
commit 19963dd6ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,7 +7,7 @@ dashedName: step-2
# --description--
Inside the return, remove the empty string, then create a `div` element with a `className` of `card`.
Inside the `return` statement, remove the empty string, then create a `div` element with a `className` of `card`.
# --hints--
@ -111,7 +111,7 @@ body {
export function Card({ name, title, bio }) {
return (
--fcc-editable-region--
""
""
--fcc-editable-region--
)
}