Изменен порядок авторизации

This commit is contained in:
Kayashov.SM
2025-08-23 23:52:04 +04:00
parent 10634242e4
commit 91770b99b7
2 changed files with 5 additions and 2 deletions

View File

@@ -85,6 +85,9 @@ export function UserPopover({anchorEl, onClose, open}) {
}
function userDescriptor(user) {
if(!user) {
return null;
}
if (!user.name) {
return (<Typography variant="subtitle1">Гость</Typography>);
}