diff --git a/src/features/game/components/desktop/desktop-title.tsx b/src/features/game/components/desktop/desktop-title.tsx
index eb0554a..25b8a90 100644
--- a/src/features/game/components/desktop/desktop-title.tsx
+++ b/src/features/game/components/desktop/desktop-title.tsx
@@ -6,20 +6,6 @@ const winAmountFormatter = new Intl.NumberFormat('en-US', {
maximumFractionDigits: 6,
})
-function maskParticipantLabel(value: number | string) {
- const label = String(value).trim()
-
- if (label.length <= 1) {
- return '*'
- }
-
- const visibleLength = Math.ceil(label.length / 2)
-
- return `${label.slice(0, visibleLength)}${'*'.repeat(
- label.length - visibleLength,
- )}`
-}
-
function formatWinAmount(value: string) {
const amount = Number(value)
@@ -34,9 +20,9 @@ export function DesktopTitle() {
jackpotBroadcasts.length > 0
? jackpotBroadcasts.map((broadcast) => ({
id: broadcast.id,
- message: `Player ${maskParticipantLabel(
- broadcast.userId,
- )} won ${formatWinAmount(broadcast.totalWin)}`,
+ message: `Player ${broadcast.nickname} won ${formatWinAmount(
+ broadcast.totalWin,
+ )}`,
}))
: [{ id: 'empty', message: '' }]
const marqueeTitles =
diff --git a/src/features/game/components/mobile/mobile-header.tsx b/src/features/game/components/mobile/mobile-header.tsx
index f02b5bc..e13415b 100644
--- a/src/features/game/components/mobile/mobile-header.tsx
+++ b/src/features/game/components/mobile/mobile-header.tsx
@@ -12,7 +12,20 @@ import avatar from '@/assets/system/avatar.webp'
import diamond from '@/assets/system/diamond.webp'
import logo from '@/assets/system/logo.webp'
import { SmartImage } from '@/components/smart-image.tsx'
-import { useHeaderVm } from '@/features/game/hooks/use-header-vm'
+import {
+ useHeaderClockLabel,
+ useHeaderVm,
+} from '@/features/game/hooks/use-header-vm'
+
+function MobileHeaderClock() {
+ const systemTimeLabel = useHeaderClockLabel()
+
+ return (
+
+ {systemTimeLabel}
+
+ )
+}
export function MobileHeader() {
const { t } = useTranslation()
@@ -30,7 +43,6 @@ export function MobileHeader() {
onOpenRules,
onOpenUserInfo,
signalPresentation,
- systemTimeLabel,
toggleSoundEnabled,
} = useHeaderVm()
@@ -155,9 +167,7 @@ export function MobileHeader() {
{t('gameDesktop.header.systemTime')}
-
- {systemTimeLabel}
-
+