fix: delete AI can make mistakes on mobile

This commit is contained in:
Lucas.Xu 2024-08-17 12:09:10 +08:00
parent a6b863b07a
commit a14076125a

View File

@ -425,13 +425,14 @@ class _ChatContentPageState extends State<_ChatContentPage> {
},
),
const VSpace(6),
Opacity(
opacity: 0.6,
child: FlowyText(
LocaleKeys.chat_aiMistakePrompt.tr(),
fontSize: 12,
if (PlatformExtension.isDesktop)
Opacity(
opacity: 0.6,
child: FlowyText(
LocaleKeys.chat_aiMistakePrompt.tr(),
fontSize: 12,
),
),
),
],
);
},