fix: user identifier, horizontal scroll on tables

This commit is contained in:
2025-07-08 23:22:13 -05:00
parent 9fb513bfbd
commit 46d90e800c
3 changed files with 3 additions and 3 deletions

View File

@@ -99,7 +99,7 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface
*/
public function getUserIdentifier(): string
{
return (string) $this->username ?? $this->email;
return (string) $this->email;
}
/**