fix: branding uses possessive form 'Mihai''s Tools'

This commit is contained in:
AI Assistant
2026-02-28 17:03:48 +02:00
parent 58fa46ced2
commit eaaec49eb1
+1 -1
View File
@@ -220,7 +220,7 @@ export function Sidebar() {
if (!user?.name) return "ArchiTools";
const firstName = user.name.split(" ")[0];
if (!firstName) return "ArchiTools";
return `${firstName} Tools`;
return `${firstName}'s Tools`;
}, [user?.name]);
return (