We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
format:fix
1 parent 019d9e0 commit 883d7d6Copy full SHA for 883d7d6
apps/www/src/app/api/trpc/[trpc]/route.ts
@@ -46,10 +46,10 @@ const handler = async (req: NextRequest) => {
46
onError:
47
env.NODE_ENV === 'development'
48
? ({ path, error }) => {
49
- console.error(
50
- `❌ tRPC failed on ${path ?? '<no-path>'}: ${error.message}`,
51
- );
52
- }
+ console.error(
+ `❌ tRPC failed on ${path ?? '<no-path>'}: ${error.message}`,
+ );
+ }
53
: undefined,
54
});
55
apps/www/src/app/page.tsx
@@ -1,4 +1,4 @@
1
-import type { NextPage } from "next";
+import type { NextPage } from 'next';
2
3
const Home: NextPage = () => {
4
return (
0 commit comments