fix: hello回

This commit is contained in:
Junhui Chen 2025-08-07 19:48:46 +08:00
parent 3f2b849db2
commit 1a28d8becd

View File

@ -1,5 +1,5 @@
import ReturnArrow from "@/assets/icons/svg/returnArrow.svg";
import Chat from "@/components/ask/chat";
import AskHello from "@/components/ask/hello";
import { ThemedText } from "@/components/ThemedText";
import { fetchApi } from "@/lib/server-api-util";
import { Message } from "@/types/ask";
@ -262,7 +262,7 @@ export default function AskScreen() {
<View style={[styles.contentContainer, { marginTop: isHello ? -24 : 0 }]}>
{/* 欢迎页面 */}
{/* <Animated.View
<Animated.View
style={[
styles.absoluteView,
{
@ -273,10 +273,10 @@ export default function AskScreen() {
]}
>
<AskHello setUserMessages={setUserMessages} setConversationId={setConversationId} setIsHello={setIsHello} />
</Animated.View> */}
</Animated.View>
{/* 聊天页面 */}
<Animated.View
{/* <Animated.View
style={[
styles.absoluteView,
{
@ -297,7 +297,7 @@ export default function AskScreen() {
showsVerticalScrollIndicator={false}
onContentSizeChange={() => scrollToEnd()}
/>
</Animated.View>
</Animated.View> */}
</View>
{/* 输入框区域 */}