diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-06 23:52:25 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-06 23:52:25 +1000 |
commit | e5dfaf2d5404afb6085f96078bfb82bf3e2e2c10 (patch) | |
tree | 928a226444d2fa7df45bc7383bf8d235fa31175c /util | |
parent | Welcome screen (diff) | |
download | server-e5dfaf2d5404afb6085f96078bfb82bf3e2e2c10.tar.xz |
Fix types for welcome screen
Diffstat (limited to 'util')
-rw-r--r-- | util/src/entities/Guild.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/entities/Guild.ts b/util/src/entities/Guild.ts index 70bb41c5..ef31a237 100644 --- a/util/src/entities/Guild.ts +++ b/util/src/entities/Guild.ts @@ -248,7 +248,7 @@ export class Guild extends BaseClass { welcome_channels: { description: string; emoji_id?: string; - emoji_name: string; + emoji_name?: string; channel_id: string; }[]; }; |