From f2b5e702ca7dc6ec33429976cac99bd28326ffc3 Mon Sep 17 00:00:00 2001 From: Harshal Harle <34764788+HarshalHarle@users.noreply.github.com> Date: Thu, 16 Jan 2025 13:02:18 +0530 Subject: [PATCH] fix(curriculum): remove duplicate 'to make' in lightbox viewer hint (#58171) --- .../lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md b/curriculum/challenges/english/25-front-end-development/lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md index 931381fcda1..7e1457cae0a 100644 --- a/curriculum/challenges/english/25-front-end-development/lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md +++ b/curriculum/challenges/english/25-front-end-development/lab-lightbox-viewer/66db57ad34c7089b9b41bfd6.md @@ -151,7 +151,7 @@ Your `.lightbox` element should be hidden initially. assert.equal(new __helpers.CSSHelp(document).getStyle('.lightbox')?.display, 'none'); ``` -When you click one of your `.gallery-item` elements, the `.lightbox` element's `display` property should be set to `flex` to make to make `.lightbox` and the two elements within it visible. +When you click one of your `.gallery-item` elements, the `.lightbox` element's `display` property should be set to `flex` to make `.lightbox` and the two elements within it visible. ```js // Get the lightbox element