Ver código fonte

fix: chat on start bug (#1588)

tags/0.3.31-fix1
Joel 1 ano atrás
pai
commit
b23de4affc
Nenhuma conta vinculada ao e-mail do autor do commit

+ 1
- 0
web/app/components/explore/universal-chat/index.tsx Ver arquivo

@@ -688,6 +688,7 @@ const Main: FC<IMainProps> = () => {
onUnpin={handleUnpin}
controlUpdateList={controlUpdateConversationList}
onDelete={handleDelete}
onStartChat={() => handleConversationIdChange('-1')}
/>
)
}

+ 1
- 1
web/app/components/share/chat/index.tsx Ver arquivo

@@ -668,7 +668,7 @@ const Main: FC<IMainProps> = ({
onUnpin={handleUnpin}
controlUpdateList={controlUpdateConversationList}
onDelete={handleDelete}
onStartChat={handleStartChat}
onStartChat={() => handleConversationIdChange('-1')}
/>
)
}

Carregando…
Cancelar
Salvar