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:
giancarlo
2024-04-17 16:15:57 +08:00
parent bf43c48dff
commit a188ca92e1
7 changed files with 2093 additions and 2077 deletions

View File

@@ -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) {