diff --git a/functions/src/market-close-emails.ts b/functions/src/market-close-emails.ts index 6b490e9d..bb144600 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 hour') + .schedule('every 1 hours') .onRun(async () => { await sendMarketCloseEmails() })