// SPDX-FileCopyrightText: 2025 Social Connect Labs, Inc. // SPDX-License-Identifier: BUSL-1.1 // NOTE: Converts to Apache-2.0 on 2029-06-11 per LICENSE. import React from 'react'; import { Button, Text, XStack, YStack } from 'tamagui'; import type { NativeStackNavigationProp } from '@react-navigation/native-stack'; import { ChevronRight } from '@tamagui/lucide-icons'; import { slate200, slate500 } from '@selfxyz/mobile-sdk-alpha/constants/colors'; import { dinot } from '@selfxyz/mobile-sdk-alpha/constants/fonts'; import BugIcon from '@/assets/icons/bug_icon.svg'; import type { RootStackParamList } from '@/navigation'; import { ParameterSection } from '@/screens/dev/components/ParameterSection'; import { ScreenSelector } from '@/screens/dev/components/ScreenSelector'; import { IS_DEV_MODE } from '@/utils/devUtils'; interface DebugShortcutsSectionProps { navigation: NativeStackNavigationProp; } export const DebugShortcutsSection: React.FC = ({ navigation, }) => { return ( } title="Debug Shortcuts" description="Jump directly to any screen for testing" > {IS_DEV_MODE && ( )} ); };