diff --git a/functions/src/market-close-emails.ts b/functions/src/market-close-emails.ts index f3c94e93..83caca89 100644 --- a/functions/src/market-close-emails.ts +++ b/functions/src/market-close-emails.ts @@ -6,7 +6,7 @@ import { getPrivateUser, getUserByUsername } from './utils' import { sendMarketCloseEmail } from './emails' export const marketCloseEmails = functions.pubsub - .schedule('every 2 minutes') + .schedule('every hour') .onRun(async () => { await sendMarketCloseEmails() })