feat: adding remove function to filter tags

This commit is contained in:
Chubby Granny Chaser 2024-12-23 18:57:41 +00:00
parent 4476b1b216
commit b5a9beb481
No known key found for this signature in database
18 changed files with 560 additions and 385 deletions

View file

@ -243,6 +243,9 @@ export interface UserDetails {
profileVisibility: ProfileVisibility;
bio: string;
subscription: Subscription | null;
quirks: {
backupsPerGameLimit: number;
};
}
export interface UserProfile {
@ -260,6 +263,9 @@ export interface UserProfile {
currentGame: UserProfileCurrentGame | null;
bio: string;
hasActiveSubscription: boolean;
quirks: {
backupsPerGameLimit: number;
};
}
export interface UpdateProfileRequest {