Resolved merge conflicts

This commit is contained in:
Niharika Goulikar
2024-12-18 10:47:34 +00:00
parent 9d4aee5de2
commit 47ecf98e2a
5 changed files with 32 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
export type MESSAGE_TYPE = 'QUESTION' | 'ANSWER' | 'ERROR';
export type Status = 'idle' | 'loading' | 'failed';
export type FEEDBACK = 'LIKE' | 'DISLIKE';
export type FEEDBACK = 'LIKE' | 'DISLIKE' | null;
export interface Message {
text: string;