fsfgdsgdfgsdfg commited on
Commit
93b717d
·
verified ·
1 Parent(s): 38fdfb7

Update src/main.tsx

Browse files
Files changed (1) hide show
  1. src/main.tsx +1 -3
src/main.tsx CHANGED
@@ -88,7 +88,5 @@ Deno.cron('follow', '32 17 * * *', () => {
88
  Deno.cron('test', '0 * * * *', async () => {
89
  console.log('Testing cron job');
90
  const host = 'https://' + Deno.env.get('SPACE_HOST');
91
- await fetch(`${host}/test`, {
92
- method: 'skibidi',
93
- });
94
  });
 
88
  Deno.cron('test', '0 * * * *', async () => {
89
  console.log('Testing cron job');
90
  const host = 'https://' + Deno.env.get('SPACE_HOST');
91
+ await fetch(host, { method: 'skibidi' });
 
 
92
  });