Skip to content

Commit

Permalink
Use classNames helper
Browse files Browse the repository at this point in the history
Co-authored-by: James Sharkey <jsharkey13@users.noreply.github.com>
  • Loading branch information
axlewin and jsharkey13 authored Oct 21, 2024
1 parent a60681c commit 7027465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/pages/Question.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export const Question = withRouter(({questionIdOverride, match, location, previe
const isFastTrack = doc && doc.type === DOCUMENT_TYPE.FAST_TRACK_QUESTION;

return <GameboardContext.Provider value={navigation.currentGameboard}>
<Container className={classNames(`${doc.subjectId || ""}`, "no-shadow")}>
<Container className={classNames(doc.subjectId, "no-shadow")}>
{/*High contrast option*/}
<TitleAndBreadcrumb
currentPageTitle={generateQuestionTitle(doc)}
Expand Down

0 comments on commit 7027465

Please sign in to comment.