Skip to content

Commit

Permalink
Remove console.logs)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Tideman committed Jun 10, 2024
1 parent 50cf6bc commit 08590a7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/routes/api/reset/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export const POST: RequestHandler = async () => {
const response = await fetch(`${env.FRAUD_API_URL}/reset`, {
method: 'POST'
});
console.log('Reseting...');
return json({ status: 'ok', body: response });
} catch (e) {
return json({ status: 'error' });
Expand Down
4 changes: 0 additions & 4 deletions src/routes/orders/(order)/[id]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
import OrderActions from '$lib/components/order-actions.svelte';
$: ({ order } = $page.data);
$: {
console.log('ORDER: ', order);
}
</script>

<section>
Expand Down

0 comments on commit 08590a7

Please sign in to comment.