We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a4b6fc commit 25ae3a5Copy full SHA for 25ae3a5
src/app/components/pages/Gameboard.tsx
@@ -61,7 +61,7 @@ const gameboardItem = (gameboard: GameboardDTO, question: GameboardItem) => {
61
export const GameboardViewer = ({gameboard, className}: {gameboard: GameboardDTO; className?: string}) => {
62
return <RS.Row className={className}>
63
<RS.Col lg={{size: 10, offset: 1}}>
64
- <RS.ListGroup className="link-list list-group-links list-gameboard">a
+ <RS.ListGroup className="link-list list-group-links list-gameboard">
65
{gameboard && gameboard.questions && gameboard.questions.map(
66
gameboardItem.bind(null, gameboard)
67
)}
0 commit comments