From d40abd19027b2d3312ff7ecb9fe187523279b0bc Mon Sep 17 00:00:00 2001 From: dev-kamil <54180588+dev-kamil@users.noreply.github.com> Date: Mon, 2 Jun 2025 19:23:11 +0200 Subject: [PATCH] fix(curriculum): remove stray backtick (#60670) --- .../lab-fcc-forum-leaderboard/673c91f0b934834bc4a3ecc2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/lab-fcc-forum-leaderboard/673c91f0b934834bc4a3ecc2.md b/curriculum/challenges/english/25-front-end-development/lab-fcc-forum-leaderboard/673c91f0b934834bc4a3ecc2.md index f4ec127e7f5..dd2096e6542 100644 --- a/curriculum/challenges/english/25-front-end-development/lab-fcc-forum-leaderboard/673c91f0b934834bc4a3ecc2.md +++ b/curriculum/challenges/english/25-front-end-development/lab-fcc-forum-leaderboard/673c91f0b934834bc4a3ecc2.md @@ -28,7 +28,7 @@ Fulfill the user stories below and get all the tests to pass to complete the lab - an `href` with the value of `//`, where `` is the `className` property of the selected category and `id` is the argument passed to `forumCategory`. 1. If the `allCategories` object does not have the selected category id as its property, `category` should be indicated as `General` and `className` should be indicated as `general`. 1. You should have a function named `avatars` that takes two arrays representing posters and users, respectively. -1. The `avatars` function should return a string made by joining `img` elements, one for each poster found inside the user array. _Hint:_ You can find users by comparing the `user_id` property of the poster with the `id` property` of the user. +1. The `avatars` function should return a string made by joining `img` elements, one for each poster found inside the user array. _Hint:_ You can find users by comparing the `user_id` property of the poster with the `id` property of the user. 1. The `avatars` function should set each avatar's size by accessing the `avatar_template` property and replacing `{size}` with `30`. 1. Each image element should have an alt text with the value of the `name` property of the poster. 1. Each image element should have a source with the value of the `avatar_template` property of the poster. In case `avatar_template` contains a relative path, you should set the source to `/`.