Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspermayone committed Mar 7, 2025
1 parent c67bfb0 commit 6ce1d06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/func/domain/checkAndUpdateDomainStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export async function checkAndUpdateDomainStatus(domain, domainId) {
data.phishObserverData,
data.urlScanData,
data.securitytrailsData,
data.phishreportData
data.phishreportData,
data.abuseChData
);

await prisma.domain.update({
Expand Down
4 changes: 2 additions & 2 deletions src/utils/postmark.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import postmark from "postmark";
import * as postmark from "postmark";

const client = new postmark.ServerClient(process.env.POSTMARK_API_KEY!);

export default client as postmark.ServerClient;
export default client;

0 comments on commit 6ce1d06

Please sign in to comment.