Merge pull request #782 from poteirard/patch-1

Fix typo in logout text
This commit is contained in:
Nevo David 2025-06-06 19:21:26 +07:00 committed by GitHub
commit e97b08773b
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>
);
};