Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
njlie committed Sep 16, 2024
1 parent a48dfb4 commit 02caf52
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions packages/backend/src/tenant/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,11 @@ async function getByIdentity(
deps: ServiceDependencies,
id: string
): Promise<Tenant | undefined> {
return Tenant.query(deps.knex).findOne({
kratosIdentityId: id
}).withGraphFetched('endpoints')
return Tenant.query(deps.knex)
.findOne({
kratosIdentityId: id
})
.withGraphFetched('endpoints')
}

async function createTenant(
Expand Down Expand Up @@ -215,4 +217,3 @@ async function createTenant(
throw err
}
}

0 comments on commit 02caf52

Please sign in to comment.