Skip to content

Commit 89a78e7

Browse files
committed
add note about ongoing discussion on message type
1 parent 1beb48e commit 89a78e7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/AlertsTable.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,16 @@ const getTitle = (alert: AlertConversation) => {
3838
};
3939

4040
function TypeCellContent({ alert }: { alert: AlertConversation }) {
41+
// TODO: this should be improved to better make sure all possible
42+
// values from BE are properly handled
43+
// see discussion: https://discord.com/channels/1184987096302239844/1317203257051054120/1332280487464407071
4144
const conversationType = alert.conversation.type;
42-
console.log({ conversationType });
4345

4446
if (conversationType === "chat") {
4547
return "Chat";
4648
}
4749

48-
return "Completion";
50+
return "Code Suggestion";
4951
}
5052

5153
export function AlertsTable() {

0 commit comments

Comments
 (0)