From 319dbca2fbd33f2ad983bb83845544ce6eb8c8c8 Mon Sep 17 00:00:00 2001 From: aarushthukral <81401731+aarushthukral@users.noreply.github.com> Date: Fri, 24 Mar 2023 19:34:47 +0530 Subject: [PATCH] chore: bump to v0.1.1 --- src-tauri/tauri.conf.json | 2 +- src/lib/space.ts | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index eedab15..3246f6a 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "Liftoff", - "version": "0.1.0" + "version": "0.1.1" }, "tauri": { "allowlist": { diff --git a/src/lib/space.ts b/src/lib/space.ts index 7077a7d..f70c451 100644 --- a/src/lib/space.ts +++ b/src/lib/space.ts @@ -43,8 +43,6 @@ export async function makeRequest( throw new Error(`Request failed with status ${res.status}: ${res.statusText}`); } - console.log(res); - return res.json(); }