Skip to content

Commit

Permalink
chore(rn): fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <[email protected]>
  • Loading branch information
Innei committed Jan 24, 2025
1 parent 79daad4 commit 2c3f752
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions apps/mobile/src/modules/login/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
} from "@/src/contexts/LoginTeamsContext"
import { isIOS } from "@/src/lib/platform"
import { toast } from "@/src/lib/toast"
import { TeamsMarkdown } from "@/src/screens/(headless)/teams"
import { TeamsMarkdown } from "@/src/screens/(headless)/terms"

import { EmailLogin } from "./email"
import { SocialLogin } from "./social"
Expand Down Expand Up @@ -115,7 +115,7 @@ const TeamsCheckBox = forwardRef<
textComponent={<TeamsText />}
onLongPress={() => {
if (!isIOS) {
router.push("/teams")
router.push("/terms")
}
}}
/>
Expand All @@ -130,7 +130,7 @@ const TeamsText = () => {
config={{ items: [] }}
onPressMenuItem={noop}
onPressPreview={() => {
router.push("/teams")
router.push("/terms")
}}
renderPreview={() => (
<View className="flex-1">
Expand Down
4 changes: 2 additions & 2 deletions apps/mobile/src/modules/settings/routes/Privacy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ export const PrivacyScreen = () => {
<NavigationBlurEffectHeader title="Privacy" />
<GroupedInsetListCard className="mt-4">
<GroupedInsetListNavigationLink
label="Teams"
label="Terms"
onPress={() => {
router.push("/teams")
router.push("/terms")
}}
/>
</GroupedInsetListCard>
Expand Down

0 comments on commit 2c3f752

Please sign in to comment.