Fix typo in logout text

This commit is contained in:
Gerard Brull 2025-06-06 14:08:16 +02:00 committed by GitHub
parent 231b11d386
commit bb9b8add8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ export const LogoutComponent = () => {
return (
<div className="text-red-400 cursor-pointer" onClick={logout}>
{t('logout_from', 'Logout from')}
{isGeneral ? 'Postiz' : 'Gitroom'}
{isGeneral ? ' Postiz' : ' Gitroom'}
</div>
);
};