Add semi-colons and correct formatting in database.types.ts
This commit implements proper syntax standards throughout the file. Every necessary line now ends with a semicolon, providing better readability and avoiding potential errors in future code interpretation.
This commit is contained in:
@@ -276,7 +276,7 @@ function HeroTitle({ children }: React.PropsWithChildren) {
|
||||
return (
|
||||
<h1
|
||||
className={
|
||||
'font-heading flex flex-col text-center text-5xl font-semibold tracking-tight sm:text-6xl lg:text-7xl'
|
||||
'flex flex-col text-center font-heading text-5xl font-semibold tracking-tight sm:text-6xl lg:text-7xl'
|
||||
}
|
||||
>
|
||||
{children}
|
||||
|
||||
@@ -16,10 +16,7 @@ export async function POST(request: Request) {
|
||||
provider,
|
||||
};
|
||||
|
||||
logger.info(
|
||||
ctx,
|
||||
`Received billing webhook. Processing...`,
|
||||
);
|
||||
logger.info(ctx, `Received billing webhook. Processing...`);
|
||||
|
||||
const supabaseClientProvider = () =>
|
||||
getSupabaseRouteHandlerClient({ admin: true });
|
||||
@@ -33,10 +30,7 @@ export async function POST(request: Request) {
|
||||
try {
|
||||
await service.handleWebhookEvent(request);
|
||||
|
||||
logger.info(
|
||||
ctx,
|
||||
`Successfully processed billing webhook`,
|
||||
);
|
||||
logger.info(ctx, `Successfully processed billing webhook`);
|
||||
|
||||
return new Response('OK', { status: 200 });
|
||||
} catch (error) {
|
||||
|
||||
Reference in New Issue
Block a user