From 96d8ffb5d409cf10f0c25b1320e849a21db26fa6 Mon Sep 17 00:00:00 2001 From: Maieul BOYER Date: Wed, 14 Jan 2026 17:08:48 +0100 Subject: [PATCH] fix(chat): correct url in game invite --- src/chat/src/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat/src/app.ts b/src/chat/src/app.ts index fe62ead..17dad71 100644 --- a/src/chat/src/app.ts +++ b/src/chat/src/app.ts @@ -229,7 +229,7 @@ async function onReady(fastify: FastifyInstance) { const profilInvite: ClientProfil = JSON.parse(data) || ''; const linkGame: PongGameId | undefined = await setGameLink(fastify, data); if (!linkGame) return; - const link: string = `Click me`; + const link: string = `Click me`; const inviteHtml: string = 'invites you to a game ' + link; if (clientName !== null) {