Skip to content

Commit

Permalink
feat: twtich badges
Browse files Browse the repository at this point in the history
  • Loading branch information
petitoff committed Oct 23, 2023
1 parent 0131fd3 commit ad88f13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions api/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface IMessage {
content: string;
emojis: string[];
author: string;
badge: string;
badges: string[];
authorColor: string;
}

Expand Down Expand Up @@ -42,7 +42,7 @@ server.post(
content: "Chat reload",
author: "System",
emojis: [],
badge: "",
badges: [],
authorColor: "text-indigo-500",
});
}
Expand Down
2 changes: 1 addition & 1 deletion chat/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ export interface IMessage {
content: string;
emojis: string[];
author: string;
badge: string;
badge: string[];
authorColor: string;
}

0 comments on commit ad88f13

Please sign in to comment.