Skip to content

Commit 80e3f0a

Browse files
fix formatting
1 parent 84349ee commit 80e3f0a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/app/(auth)/sign-up.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ export default function SignUpScreen() {
4343
};
4444

4545
void initLanguage().catch((error) => {
46-
console.error("Sign-up page: Unhandled error during language initialization:", error);
46+
console.error(
47+
"Sign-up page: Unhandled error during language initialization:",
48+
error,
49+
);
4750
});
4851
}, []);
4952

src/components/TRPCProvider.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useState } from "react";
22
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
33
import { httpBatchLink } from "@trpc/client";
4-
import { trpc } from "../utils/trpc";
4+
import { trpc } from "~/utils/trpc";
55
import superjson from "superjson";
66
import { Platform } from "react-native";
77
import { useAuth } from "@clerk/clerk-expo";

0 commit comments

Comments
 (0)