From 5a493a9ef2260c84000fd5fa374cb93efc80f360 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 2 Aug 2025 02:57:02 +0200 Subject: [PATCH] Add profile title --- lib/client/profile.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/client/profile.tsx b/lib/client/profile.tsx index 66fbbf5b..32ea9d19 100644 --- a/lib/client/profile.tsx +++ b/lib/client/profile.tsx @@ -69,6 +69,7 @@ export function getProfile(url: string, header: any = null) { const data = await res.json(); setUserData(data); console.log('userData', data); + document.title = 'BayesBond | ' + data.name; if (data?.image) { await parseImage(data.image, setImage);