Skip to content

Commit bd28b64

Browse files
Merge pull request steam-bell-92#1739 from ruhelamahi7-code/fix/projects-js-missing-closing-brace
fix: add missing return statement and closing brace in getProjectHTML() in projects.js
2 parents 3869d95 + b01f6bf commit bd28b64

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

web-app/js/projects.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ function getProjectHTML(projectName) {
3838
"tsp-visualizer": getTspVisualizerHTML(),
3939
'minesweeper': getMinesweeperHTML()
4040
};
41+
return projects[projectName];
42+
}
43+
4144

4245

4346
function toPascalCase(str) {

0 commit comments

Comments
 (0)