Skip to content

Commit

Permalink
style(prettier): run format:fix script
Browse files Browse the repository at this point in the history
  • Loading branch information
codingcodax committed Jul 16, 2024
1 parent 019d9e0 commit 883d7d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions apps/www/src/app/api/trpc/[trpc]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ const handler = async (req: NextRequest) => {
onError:
env.NODE_ENV === 'development'
? ({ path, error }) => {
console.error(
`❌ tRPC failed on ${path ?? '<no-path>'}: ${error.message}`,
);
}
console.error(
`❌ tRPC failed on ${path ?? '<no-path>'}: ${error.message}`,
);
}
: undefined,
});

Expand Down
2 changes: 1 addition & 1 deletion apps/www/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { NextPage } from "next";
import type { NextPage } from 'next';

const Home: NextPage = () => {
return (
Expand Down

0 comments on commit 883d7d6

Please sign in to comment.