We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1beb48e commit 89a78e7Copy full SHA for 89a78e7
src/components/AlertsTable.tsx
@@ -38,14 +38,16 @@ const getTitle = (alert: AlertConversation) => {
38
};
39
40
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
44
const conversationType = alert.conversation.type;
- console.log({ conversationType });
45
46
if (conversationType === "chat") {
47
return "Chat";
48
}
49
- return "Completion";
50
+ return "Code Suggestion";
51
52
53
export function AlertsTable() {
0 commit comments