Skip to content

Commit 813885e

Browse files
committed
fix: add missing parentheses to getReverseHangmanHTML call
The arrow function was returning the function reference instead of calling it, causing Reverse Hangman project to not load in web app. Closes steam-bell-92#1311
1 parent 793620e commit 813885e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

web-app/js/projects.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function getProjectHTML(projectName) {
2626
'sudoku-game': getSudokuGameHTML(),
2727
'unit-converter': getUnitConverterHTML(),
2828
'resume-analyzer': getResumeAnalyzerHTML(),
29-
'reverse-hangman': () => getReverseHangmanHTML,
29+
'reverse-hangman': () => getReverseHangmanHTML(),
3030
'budget-tracker': getBudgetTrackerHTML(),
3131
'snake-game': getSnakeGameHTML(),
3232
'bubble-sort': getBubbleSortHTML(),

0 commit comments

Comments
 (0)