diff --git a/nise-frontend/src/app/replays.ts b/nise-frontend/src/app/replays.ts index f44d104..e5ee510 100644 --- a/nise-frontend/src/app/replays.ts +++ b/nise-frontend/src/app/replays.ts @@ -68,7 +68,7 @@ export function getMockReplayData(): ReplayData { export interface ReplayData { replay_id: number | null; - user_id: number; + user_id: number | null; username: string; date: string; beatmap_id: number; diff --git a/nise-frontend/src/app/view-score/view-score.component.html b/nise-frontend/src/app/view-score/view-score.component.html index 2ca4224..8bb35ef 100644 --- a/nise-frontend/src/app/view-score/view-score.component.html +++ b/nise-frontend/src/app/view-score/view-score.component.html @@ -33,7 +33,7 @@
- Played by {{ this.replayData.username }} osu!web + Played by {{ this.replayData.username }} osu!web
Submitted on {{ this.replayData.date }}