Skip to content

Commit 655ceb9

Browse files
committed
fix:patched answer key button not working
1 parent bfa27b4 commit 655ceb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/CatalogueContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ const CatalogueContent = () => {
198198
const campusCondition = campus.length
199199
? campus.includes(paper.campus)
200200
: true;
201-
const answerkeyCondition = anskey ? paper.answerKeyIncluded : true;
201+
const answerkeyCondition = anskey ? paper.answerKeyIncluded ===true : true;
202202
return (
203203
examCondition &&
204204
slotCondition &&

0 commit comments

Comments
 (0)