Skip to content

Commit 826c4a6

Browse files
committed
Don't show hint titles
1 parent df3b742 commit 826c4a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/content/IsaacHints.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const IsaacTabbedHints = ({hints}: HintsProps) => {
3838
return <div className="tabbed-hints">
3939
{hints && <Tabs className="no-print" tabTitleClass="hint-tab-title" tabContentClass="mt-1" deselectable activeTabOverride={-1}>
4040
{Object.assign({}, ...hints.map((hint, index) => ({
41-
[hint.title || `Hint\u00A0${index + 1}`]: <div className="mt-3 mt-lg-4 pt-2">
41+
[`Hint\u00A0${index + 1}`]: <div className="mt-3 mt-lg-4 pt-2">
4242
<IsaacContent doc={hint} />
4343
</div>
4444
})))}

0 commit comments

Comments
 (0)