fix(chat): fix bot status not showing. Closes #3046

This commit is contained in:
Gabe Kangas
2023-05-31 13:54:03 -07:00
parent 1ed51859b0
commit 71703f2245
5 changed files with 19 additions and 15 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ export const createUser = (name: string, color: number, createdAt: Date): User =
nameChangedAt: createdAt,
previousNames: [],
scopes: [],
isModerator: () => false,
isBot: false,
isModerator: false,
});
export const spidermanUser = createUser('Spiderman', 1, new Date(2020, 1, 2));