2
0

🐛 (attachments) Fix attachments on mobile and fix long text…

Closes #1611, closes #1610
This commit is contained in:
Baptiste Arnaud
2024-06-27 09:20:42 +02:00
parent 8ec0fbdebf
commit 898ed529b0
8 changed files with 83 additions and 74 deletions

View File

@@ -1,6 +1,6 @@
import { guessApiHost } from '@/utils/guessApiHost'
import { isNotEmpty } from '@typebot.io/lib'
import { ContinueChatResponse } from '@typebot.io/schemas'
import { ContinueChatResponse, Message } from '@typebot.io/schemas'
import ky from 'ky'
export const continueChatQuery = async ({
@@ -9,7 +9,7 @@ export const continueChatQuery = async ({
sessionId,
}: {
apiHost?: string
message: string | undefined
message?: Message
sessionId: string
}) => {
try {