Skip to content

Commit 24cb43a

Browse files
committed
format
1 parent ddd5fdd commit 24cb43a

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.apikeys/route.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,10 @@ export default function Page() {
372372
) : null}
373373

374374
<Accordion type="single" collapsible>
375-
<AccordionItem value="environment-variables" className="bg-white dark:bg-transparent">
375+
<AccordionItem
376+
value="environment-variables"
377+
className="bg-white dark:bg-transparent"
378+
>
376379
<AccordionTrigger>How to set these environment variables</AccordionTrigger>
377380
<AccordionContent>
378381
<div className="flex flex-col gap-2">

apps/webapp/app/services/apiAuth.server.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,7 @@ export async function authenticateApiKeyWithScope(
300300
resource,
301301
allowJWT = false,
302302
}: { action: string; resource: RbacResource; allowJWT?: boolean },
303-
authorizeBearer: typeof authenticateAuthorizeBearerWithTelemetry =
304-
authenticateAuthorizeBearerWithTelemetry
303+
authorizeBearer: typeof authenticateAuthorizeBearerWithTelemetry = authenticateAuthorizeBearerWithTelemetry
305304
): Promise<
306305
| { ok: true; authentication: ApiAuthenticationResultSuccess }
307306
| { ok: false; status: 401 | 403; error: string }

0 commit comments

Comments
 (0)