Skip to content

Commit

Permalink
Formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarscher committed Jan 6, 2024
1 parent ee61f62 commit 5f6201b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion apps/next/app/params/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const metadata: Metadata = {
title: 'Params Demo',
}

export const runtime = 'edge';
export const runtime = 'edge'

export default function Page() {
return <ParamsScreen />
Expand Down
4 changes: 1 addition & 3 deletions apps/next/app/ssr/screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ import { Paragraph, YStack } from '@t4/ui'
export function SSRTestScreen(props: { content: string }) {
return (
<YStack flex={1}>
<Paragraph role='heading'>
{props.content}
</Paragraph>
<Paragraph role='heading'>{props.content}</Paragraph>
</YStack>
)
}
1 change: 0 additions & 1 deletion apps/next/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ module.exports = function () {
},
]
},

}

for (const plugin of plugins) {
Expand Down
4 changes: 2 additions & 2 deletions packages/app/features/oauth/screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ export const OAuthSignInScreen = ({ appleUser }: OAuthSignInScreenProps): React.
// Maybe there's a superjson plugin or another way to handle it.
appleUser: appleUser
? {
email: appleUser.email || undefined,
}
email: appleUser.email || undefined,
}
: undefined,
})
}, [provider, redirectTo, state, code, sendApiRequestOnLoad, appleUser])
Expand Down
4 changes: 3 additions & 1 deletion packages/app/utils/trpc/index.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ export function TRPCProvider(props: { children: React.ReactNode }) {
// always try to include cookies
})
},
url: `${typeof window !== 'undefined' ? '' : process.env.NEXT_PUBLIC_API_URL}/worker/trpc`,
url: `${
typeof window !== 'undefined' ? '' : process.env.NEXT_PUBLIC_API_URL
}/worker/trpc`,
}),
],
})
Expand Down

1 comment on commit 5f6201b

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✔ EAS production build completed

  • 🤖 Android build failed ❌
  • 🍏 IOS build failed ❌
Android QR IOS QR

Please sign in to comment.