From 44d12f28f16eeefead5c74b4c1293ddb7f9ab38a Mon Sep 17 00:00:00 2001 From: Aditya Hegde Date: Fri, 20 Dec 2024 16:43:59 +0530 Subject: [PATCH] Fix lint --- .../src/routes/[organization]/-/projects-breakdown/+page.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/web-admin/src/routes/[organization]/-/projects-breakdown/+page.ts b/web-admin/src/routes/[organization]/-/projects-breakdown/+page.ts index 470df896805..88fac296f4e 100644 --- a/web-admin/src/routes/[organization]/-/projects-breakdown/+page.ts +++ b/web-admin/src/routes/[organization]/-/projects-breakdown/+page.ts @@ -22,10 +22,10 @@ export const load = async ({ params, parent }) => { queryFn: () => adminServiceGetBillingProjectCredentials({ organization }), }); const runtime: Runtime = { - host: fixLocalhostRuntimePort(billingProjectCredsResp.runtimeHost), - instanceId: billingProjectCredsResp.instanceId, + host: fixLocalhostRuntimePort(billingProjectCredsResp.runtimeHost ?? ""), + instanceId: billingProjectCredsResp.instanceId ?? "", jwt: { - token: billingProjectCredsResp.accessToken, + token: billingProjectCredsResp.accessToken ?? "", authContext: "embed", receivedAt: Date.now(), },