mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-18 00:33:59 +00:00
feat: show current game on other users profile
This commit is contained in:
@@ -141,9 +141,8 @@ export interface Game {
|
||||
export type LibraryGame = Omit<Game, "repacks">;
|
||||
|
||||
export interface GameRunning {
|
||||
id: number;
|
||||
title: string;
|
||||
iconUrl: string;
|
||||
iconUrl: string | null;
|
||||
objectID: string;
|
||||
shop: GameShop;
|
||||
sessionDurationInMillis: number;
|
||||
@@ -318,7 +317,7 @@ export interface UserProfile {
|
||||
friends: UserFriend[];
|
||||
totalFriends: number;
|
||||
relation: UserRelation | null;
|
||||
currentGame: UserGame | null;
|
||||
currentGame: GameRunning | null;
|
||||
}
|
||||
|
||||
export interface UpdateProfileProps {
|
||||
|
||||
Reference in New Issue
Block a user