TikTok api

This commit is contained in:
2026-07-08 19:03:35 +02:00
parent 6b57a2acfc
commit cc28a157d4
29 changed files with 196 additions and 6 deletions

View File

@@ -231,8 +231,10 @@ const TypingIndicator = ({ colors }: { colors: any }) => {
export default function OnboardingChatScreen() {
const router = useRouter();
const posthog = useSafeAnalytics();
const { session, isDarkMode, colorPalette, language } = useApp();
const colors = useColors(isDarkMode, colorPalette);
const { session, colorPalette, language } = useApp();
// This screen is hardcoded dark (#131e14 backgrounds), so always use the
// dark color set — theme-dependent text would be unreadable in light mode.
const colors = useColors(true, colorPalette);
const copy = getChatCopy(language);
const { height } = useWindowDimensions();
const compact = height < 700;