diff --git a/apps/web/src/app/mentor/chat/[chatId]/_ui/ChatContent/_ui/ChatMessageBox/index.tsx b/apps/web/src/app/mentor/chat/[chatId]/_ui/ChatContent/_ui/ChatMessageBox/index.tsx index cfbf109a..182a9bf8 100644 --- a/apps/web/src/app/mentor/chat/[chatId]/_ui/ChatContent/_ui/ChatMessageBox/index.tsx +++ b/apps/web/src/app/mentor/chat/[chatId]/_ui/ChatContent/_ui/ChatMessageBox/index.tsx @@ -66,7 +66,7 @@ const useChatImageHealthCheck = (src: string, enabled: boolean) => { probeImage.onload = () => { if (isCancelled) return; setIsReady(true); - setReadySrc(probeImage?.src ?? src); + setReadySrc(src); }; probeImage.onerror = () => {