Skip to content

Commit

Permalink
fix: Fix build image fail after latest changes (#659)
Browse files Browse the repository at this point in the history
* fix: Fix build image fail after latets chages

* fix(OrganizerModule): Export OrganizerService
  • Loading branch information
sashko9807 authored Jul 21, 2024
1 parent f344ecd commit 6653561
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/src/campaign/campaign.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ export class CampaignService {
// Generate list in the marketing platform
let listId: string
const lists = await this.marketingNotificationsService.provider.getContactLists()
const campaginEmailLists = lists.body.result
const campaignEmailLists = lists.body.result
const exists = campaignEmailLists.find((campaign) => campaign.name === updated.title)
if (exists) {
listId = exists.id
Expand Down
1 change: 1 addition & 0 deletions apps/api/src/organizer/organizer.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ import { PrismaModule } from '../prisma/prisma.module'
imports: [PrismaModule],
controllers: [OrganizerController],
providers: [OrganizerService],
exports: [OrganizerService],
})
export class OrganizerModule {}

0 comments on commit 6653561

Please sign in to comment.