apps/web: use displayName or username

This commit is contained in:
vchikalkin 2024-06-06 21:46:04 +03:00
parent dc9e0852ac
commit e51c59274c

View File

@ -95,7 +95,7 @@ export const Form = {
type="submit"
onClick={() => handleRefreshToken()}
>
Продолжить как <b>{user?.displayName}</b>
Продолжить как <b>{user?.displayName || user.username}</b>
</button>
);
}
@ -218,7 +218,7 @@ export const Form = {
type="submit"
onClick={() => handleRefreshToken()}
>
Продолжить как <b>{user?.displayName}</b>
Продолжить как <b>{user?.displayName || user.username}</b>
</button>
);
}