Skip to content

Commit

Permalink
fix: deno fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
NextFire committed Aug 19, 2024
1 parent 08c36d0 commit 2683c2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ export class Client {
get userTag() {
return this.user === undefined
? undefined
: `${this.user.username}${this.user.discriminator === "0" ? "" : `#${this.user.discriminator}`}`;
: `${this.user.username}${
this.user.discriminator === "0" ? "" : `#${this.user.discriminator}`
}`;
}

get authenticated() {
Expand Down

0 comments on commit 2683c2a

Please sign in to comment.