Files
whyrating/apps/mobile/src/app/(setup)/auth/error.tsx
2026-02-04 01:55:00 +01:00

40 lines
1.1 KiB
TypeScript

import { useLocalSearchParams } from "expo-router";
import { View } from "react-native";
import { useTranslation } from "@turbostarter/i18n";
import { Icons } from "@turbostarter/ui-mobile/icons";
import { Text } from "@turbostarter/ui-mobile/text";
import { pathsConfig } from "~/config/paths";
import { Link } from "~/modules/common/styled";
const AuthError = () => {
const { error } = useLocalSearchParams<{ error?: string }>();
const { t } = useTranslation(["auth", "common"]);
return (
<View className="bg-background flex-1 flex-col items-center justify-center gap-4 px-8">
<Icons.CircleX className="text-destructive" strokeWidth={1.2} size={80} />
<Text className="font-sans-semibold text-center text-2xl">
{t("error.general")}
</Text>
{error && (
<Text className="bg-muted rounded-md px-2 py-0.5 font-mono">
{error}
</Text>
)}
<Link
href={pathsConfig.setup.auth.login}
replace
className="text-muted-foreground mt-3 font-sans underline"
>
{t("goToLogin")}
</Link>
</View>
);
};
export default AuthError;