Skip to content

Commit b01f6bf

Browse files
fix: add missing return statement and closing brace in getProjectHTML() in projects.js
1 parent 68dc21b commit b01f6bf

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)