Skip to content

Commit

Permalink
Fix CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
afharo committed Jul 25, 2024
1 parent cdfaf19 commit 4f0d7d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "../../../../../tsconfig.base.json",
"include": ["**/*"],
"include": ["**/*", "../server/**/*"],
"exclude": ["tmp", "target/**/*"],
"compilerOptions": {
"outDir": "target/types",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../../../../tsconfig.base.json",
"exclude": ["tmp", "target/**/*"],
"include": ["**/*"],
"include": ["**/*", "../common/**/*", "../server/**/*"],
"compilerOptions": {
"outDir": "target/types",
"types": ["node"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -540,8 +540,8 @@ export function defineRoutes(

const emailService = notifications.getEmailService();

emailService.sendPlainTextEmail({ to, subject, message });
emailService.sendHTMLEmail({ to, subject, message, messageHTML });
await emailService.sendPlainTextEmail({ to, subject, message });
await emailService.sendHTMLEmail({ to, subject, message, messageHTML });

return res.ok({ body: { ok: true } });
}
Expand Down

0 comments on commit 4f0d7d4

Please sign in to comment.