Skip to content

Commit

Permalink
fix: fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
swatDong committed Sep 21, 2022
1 parent dddbfba commit f3a7225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stocks-update-notification-bot/bot/src/timerTrigger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const sendCard =
<T extends object>(target: TeamsBotInstallation) =>
(ac: typeof AdaptiveCards) =>
(template: object) =>
(quote: GlobalQuote): Promise<void> =>
(quote: GlobalQuote): Promise<any> =>
target.sendAdaptiveCard(ac.declare<T>(template).render(quote as T));

const handleError =
Expand Down

0 comments on commit f3a7225

Please sign in to comment.