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);