diff --git a/src/util.js b/src/util.js
index bda3f78..e247807 100644
--- a/src/util.js
+++ b/src/util.js
@@ -135,4 +135,4 @@ export const notify = html => new Promise((resolve, reject) => {
export const escapeHtml = unsafe => unsafe.replaceAll('&', '&').replaceAll('<', '<').replaceAll('>', '>').replaceAll('"', '"').replaceAll('\'', ''');
-export const html_game_list = games => games.map(g => `- ${escapeHtml(g.title)} (${g.status})`).join('
');
+export const html_game_list = games => games.map(g => `- ${escapeHtml(g.title)} (${g.status})`).join('
');