From cb9dac43f89ec3ee5e88f5a2ab4d52b16f71dc2c Mon Sep 17 00:00:00 2001
From: Alex Goldsmith <46906584+alexgoldsmith@users.noreply.github.com>
Date: Thu, 17 Jul 2025 12:30:40 -0500
Subject: [PATCH] fix(curriculum): handle whitespace for step 12 of
workshop-cat-photo-app (#61344)
---
.../workshop-cat-photo-app/671b6e873249bb35c9debfcf.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/curriculum/challenges/english/25-front-end-development/workshop-cat-photo-app/671b6e873249bb35c9debfcf.md b/curriculum/challenges/english/25-front-end-development/workshop-cat-photo-app/671b6e873249bb35c9debfcf.md
index 8abb3ffb762..0701722ad4c 100644
--- a/curriculum/challenges/english/25-front-end-development/workshop-cat-photo-app/671b6e873249bb35c9debfcf.md
+++ b/curriculum/challenges/english/25-front-end-development/workshop-cat-photo-app/671b6e873249bb35c9debfcf.md
@@ -26,7 +26,7 @@ assert.strictEqual(document.querySelector('a')?.innerText?.replace(/\s+/g, ' ').
You should have `See more cat photos in our gallery` in your code.
```js
-assert.match(code, /See more cat photos<\/a> in our gallery/)
+assert.match(code, /See more\s+cat photos<\/a>\s+in our gallery/);
```
# --seed--