diff --git a/curriculum/challenges/english/25-front-end-development/workshop-reusable-profile-card-component/674ef2d357676e50e4691658.md b/curriculum/challenges/english/25-front-end-development/workshop-reusable-profile-card-component/674ef2d357676e50e4691658.md index e00b50a5f95..7b08078cdb6 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-reusable-profile-card-component/674ef2d357676e50e4691658.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-reusable-profile-card-component/674ef2d357676e50e4691658.md @@ -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-- ) }