50 lines
1.9 KiB
Diff
50 lines
1.9 KiB
Diff
diff --git a/src/App.native.tsx b/src/App.native.tsx
|
|
index 3578d4612..483de14c7 100644
|
|
--- a/src/App.native.tsx
|
|
+++ b/src/App.native.tsx
|
|
@@ -52,7 +52,7 @@ import {
|
|
Provider as StatsigProvider,
|
|
statsigSetup,
|
|
} from '#/lib/statsig/statsig'
|
|
-import {prefetchAgeAssuranceConfig} from '#/state/queries/profile'
|
|
+// import {prefetchAgeAssuranceConfig} from '#/state/queries/profile'
|
|
import {msg} from '@lingui/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
import {QueryClient} from '@tanstack/react-query'
|
|
@@ -107,7 +107,7 @@ function InnerApp() {
|
|
// prefetch the age assurance config if the user is logged in
|
|
// so we can use it for blocking content
|
|
if (hasSession) {
|
|
- prefetchAgeAssuranceConfig(queryClient)
|
|
+ // prefetchAgeAssuranceConfig(queryClient)
|
|
}
|
|
}, [hasSession, queryClient])
|
|
|
|
diff --git a/src/routes.ts b/src/routes.ts
|
|
index b7523bb0d..fc48add49 100644
|
|
--- a/src/routes.ts
|
|
+++ b/src/routes.ts
|
|
@@ -71,8 +71,8 @@ export const router = new Router<AllNavigatableRoutes>({
|
|
MiscellaneousNotificationSettings: '/settings/notifications/miscellaneous',
|
|
// support
|
|
Support: '/support',
|
|
- PrivacyPolicy: '/support/privacy',
|
|
- TermsOfService: '/support/tos',
|
|
+ PrivacyPolicy: 'https://syu.is/about/support/privacy-policy',
|
|
+ TermsOfService: 'https://syu.is/about/support/tos',
|
|
CommunityGuidelines: '/support/community-guidelines',
|
|
CopyrightPolicy: '/support/copyright',
|
|
// hashtags
|
|
diff --git a/src/state/session/agent.ts b/src/state/session/agent.ts
|
|
index 725679ba2..9d40fe2c4 100644
|
|
--- a/src/state/session/agent.ts
|
|
+++ b/src/state/session/agent.ts
|
|
@@ -83,7 +83,7 @@ export function getAgent() {
|
|
if (prevServiceUrl !== publicAgent.service.toString()) {
|
|
logger.warn(`Public Agent service URL changed`, {prevServiceUrl})
|
|
}
|
|
- activeAgent.configureProxy(BLUESKY_PROXY_HEADER)
|
|
+ // activeAgent.configureProxy(BLUESKY_PROXY_HEADER)
|
|
return activeAgent
|
|
}
|