Skip to content

Commit

Permalink
chore: cleanup dupes
Browse files Browse the repository at this point in the history
  • Loading branch information
busla committed Oct 22, 2024
1 parent f06506a commit 67f75e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions infra/src/dsl/dsl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,10 @@ export class ServiceBuilder<ServiceType extends string> {
}

bff(config: BffInfo) {
this.serviceDef.env = { ...this.serviceDef.env, ...bffConfig(config).env }
this.serviceDef.env = { ...bffConfig(config).env, ...this.serviceDef.env }
this.serviceDef.secrets = {
...this.serviceDef.secrets,
...bffConfig(config).secrets,
...this.serviceDef.secrets,
}
return this
}
Expand Down
1 change: 0 additions & 1 deletion infra/src/uber-charts/islandis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ const api = apiSetup({
userNotificationService,
})

const bffAdminPortalService = bffAdminPortalServiceSetup({ api: api })
const servicePortal = servicePortalSetup({ graphql: api })
const bffAdminPortalService = bffAdminPortalServiceSetup({ api })
const appSystemForm = appSystemFormSetup({ api })
Expand Down

0 comments on commit 67f75e3

Please sign in to comment.