Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaHegde committed Dec 20, 2024
1 parent b5c93d0 commit 44d12f2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
},
Expand Down

0 comments on commit 44d12f2

Please sign in to comment.