import {View} from 'react-native' import {Trans} from '@lingui/macro' import { type AllNavigatorParams, type NativeStackScreenProps, } from '#/lib/routes/types' import {useNotificationSettingsQuery} from '#/state/queries/notifications/settings' import {atoms as a} from '#/alf' import {Admonition} from '#/components/Admonition' import {LikeRepost_Stroke2_Corner2_Rounded as LikeRepostIcon} from '#/components/icons/Heart2' import * as Layout from '#/components/Layout' import * as SettingsList from '../components/SettingsList' import {ItemTextWithSubtitle} from './components/ItemTextWithSubtitle' import {PreferenceControls} from './components/PreferenceControls' type Props = NativeStackScreenProps< AllNavigatorParams, 'LikesOnRepostsNotificationSettings' > export function LikesOnRepostsNotificationSettingsScreen({}: Props) { const {data: preferences, isError} = useNotificationSettingsQuery() return ( Notifications Likes of your reposts} subtitleText={ Get notifications when people like posts that you've reposted. } /> {isError ? ( Failed to load notification settings. ) : ( )} ) }