@@ -62,10 +62,10 @@ import {
6262
6363export interface UserProfileData {
6464 username: string ;
65- userId: string ;
65+ userId: string ;
6666 joinedAt: number ;
6767 avatarUrl: string ;
68- bio: string ;
68+ bio: string ;
6969}
7070
7171@V2Container ({ accentColor: 0x5865f2 })
@@ -114,11 +114,11 @@ export class ProfileHandler {
114114 const user = interaction .user ;
115115
116116 const data: UserProfileData = {
117- username: user .username ,
118- userId: user .id ,
119- joinedAt: user .createdTimestamp ,
117+ username: user .username ,
118+ userId: user .id ,
119+ joinedAt: user .createdTimestamp ,
120120 avatarUrl: user .displayAvatarURL ({ size: 128 }),
121- bio: ' Sin bio configurada.' ,
121+ bio: ' Sin bio configurada.' ,
122122 };
123123
124124 const payload = this .v2 .buildReply (UserProfileContainer , data );
@@ -304,12 +304,12 @@ import {
304304
305305export interface LeaderboardEntry {
306306 username: string ;
307- score: number ;
308- rank: number ;
307+ score: number ;
308+ rank: number ;
309309}
310310
311311export interface LeaderboardData {
312- title: string ;
312+ title: string ;
313313 entries: Array <LeaderboardEntry >;
314314}
315315
@@ -382,10 +382,10 @@ import {
382382} from ' @spraxium/components' ;
383383
384384export interface MemberCardData {
385- username: string ;
385+ username: string ;
386386 boostLevel: number ;
387- isAdmin: boolean ;
388- bio: string ;
387+ isAdmin: boolean ;
388+ bio: string ;
389389}
390390
391391@V2Container ({ accentColor: 0x5865f2 })
@@ -462,7 +462,7 @@ import { LinkButton, V2Container, V2Section, V2Text, desc } from '@spraxium/comp
462462export class DocsLinkButton {}
463463
464464export interface ResourceCardData {
465- title: string ;
465+ title: string ;
466466 description: string ;
467467}
468468
0 commit comments