ui: raise in-game emoji button above the hand + gender = male/female/unknown
CI/CD / CI - API (dotnet build + engine sim) (push) Successful in 29s
CI/CD / CI - Web (tsc + next build) (push) Successful in 1m13s
CI/CD / Deploy - local stack (db + server + web) (push) Successful in 1m4s

- GameTable reactions button (and its tray) moved up from the bottom-right so it
  no longer overlaps the player's cards on mobile portrait.
- Gender options are now Male / Female / Unknown — removed "other" from the
  Gender type, GENDER_META, and the profile picker; the empty value renders as
  «نامشخص» / "Unknown".

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
soroush.asadi
2026-06-13 08:59:15 +03:30
parent 1954992203
commit 53759be8b7
5 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -407,7 +407,7 @@ function Stat({ label, value }: { label: string; value: string | number }) {
);
}
const GENDERS: Gender[] = ["male", "female", "other", ""];
const GENDERS: Gender[] = ["male", "female", ""];
const VIS_OPTIONS: { id: SocialVisibility; icon: React.ReactNode; key: string }[] = [
{ id: "public", icon: <Eye className="size-3.5" />, key: "profile.visPublic" },
{ id: "friends", icon: <Users className="size-3.5" />, key: "profile.visFriends" },