File size: 201 Bytes
11e3284
 
 
 
 
1
2
3
4
5
6
import { EmptyConversationId } from '@/constants/chat';

export const isConversationIdExist = (conversationId: string) => {
  return conversationId !== EmptyConversationId && conversationId !== '';
};