renamed page to savedfeeds
parent
6105314f15
commit
61ea37ff81
|
@ -52,7 +52,7 @@ import {AppPasswords} from 'view/screens/AppPasswords'
|
||||||
import {MutedAccounts} from 'view/screens/MutedAccounts'
|
import {MutedAccounts} from 'view/screens/MutedAccounts'
|
||||||
import {BlockedAccounts} from 'view/screens/BlockedAccounts'
|
import {BlockedAccounts} from 'view/screens/BlockedAccounts'
|
||||||
import {getRoutingInstrumentation} from 'lib/sentry'
|
import {getRoutingInstrumentation} from 'lib/sentry'
|
||||||
import CustomAlgorithms from 'view/screens/CustomAlgorithms'
|
import {SavedFeeds} from './view/screens/SavedFeeds'
|
||||||
|
|
||||||
const navigationRef = createNavigationContainerRef<AllNavigatorParams>()
|
const navigationRef = createNavigationContainerRef<AllNavigatorParams>()
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ function commonScreens(Stack: typeof HomeTab) {
|
||||||
/>
|
/>
|
||||||
<Stack.Screen name="CopyrightPolicy" component={CopyrightPolicyScreen} />
|
<Stack.Screen name="CopyrightPolicy" component={CopyrightPolicyScreen} />
|
||||||
<Stack.Screen name="AppPasswords" component={AppPasswords} />
|
<Stack.Screen name="AppPasswords" component={AppPasswords} />
|
||||||
<Stack.Screen name="CustomAlgorithms" component={CustomAlgorithms} />
|
<Stack.Screen name="SavedFeeds" component={SavedFeeds} />
|
||||||
<Stack.Screen name="MutedAccounts" component={MutedAccounts} />
|
<Stack.Screen name="MutedAccounts" component={MutedAccounts} />
|
||||||
<Stack.Screen name="BlockedAccounts" component={BlockedAccounts} />
|
<Stack.Screen name="BlockedAccounts" component={BlockedAccounts} />
|
||||||
</>
|
</>
|
||||||
|
|
|
@ -20,7 +20,7 @@ export type CommonNavigatorParams = {
|
||||||
CommunityGuidelines: undefined
|
CommunityGuidelines: undefined
|
||||||
CopyrightPolicy: undefined
|
CopyrightPolicy: undefined
|
||||||
AppPasswords: undefined
|
AppPasswords: undefined
|
||||||
CustomAlgorithms: undefined
|
SavedFeeds: undefined
|
||||||
MutedAccounts: undefined
|
MutedAccounts: undefined
|
||||||
BlockedAccounts: undefined
|
BlockedAccounts: undefined
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ export const router = new Router({
|
||||||
Debug: '/sys/debug',
|
Debug: '/sys/debug',
|
||||||
Log: '/sys/log',
|
Log: '/sys/log',
|
||||||
AppPasswords: '/settings/app-passwords',
|
AppPasswords: '/settings/app-passwords',
|
||||||
CustomAlgorithms: '/settings/custom-algorithms',
|
SavedFeeds: '/settings/saved-feeds',
|
||||||
MutedAccounts: '/settings/muted-accounts',
|
MutedAccounts: '/settings/muted-accounts',
|
||||||
BlockedAccounts: '/settings/blocked-accounts',
|
BlockedAccounts: '/settings/blocked-accounts',
|
||||||
Support: '/support',
|
Support: '/support',
|
||||||
|
|
|
@ -22,9 +22,9 @@ import {Text} from 'view/com/util/text/Text'
|
||||||
import {isDesktopWeb} from 'platform/detection'
|
import {isDesktopWeb} from 'platform/detection'
|
||||||
import {s} from 'lib/styles'
|
import {s} from 'lib/styles'
|
||||||
|
|
||||||
type Props = NativeStackScreenProps<CommonNavigatorParams, 'CustomAlgorithms'>
|
type Props = NativeStackScreenProps<CommonNavigatorParams, 'SavedFeeds'>
|
||||||
|
|
||||||
const CustomAlgorithms = withAuthRequired(
|
export const SavedFeeds = withAuthRequired(
|
||||||
observer(({}: Props) => {
|
observer(({}: Props) => {
|
||||||
const pal = usePalette('default')
|
const pal = usePalette('default')
|
||||||
const rootStore = useStores()
|
const rootStore = useStores()
|
||||||
|
@ -89,8 +89,6 @@ const CustomAlgorithms = withAuthRequired(
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
export default CustomAlgorithms
|
|
||||||
|
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
footer: {
|
footer: {
|
||||||
paddingVertical: 20,
|
paddingVertical: 20,
|
Loading…
Reference in New Issue