fix: removing async promise

This commit is contained in:
Chubby Granny Chaser
2025-03-31 01:01:44 +01:00
parent e6fde48dbd
commit 73f4b0e869
3 changed files with 11 additions and 6 deletions

View File

@@ -5,7 +5,7 @@ const createDownloadSource = async (
_event: Electron.IpcMainInvokeEvent,
url: string
) => {
return HydraApi.post("/profile/download-sources", {
await HydraApi.post("/profile/download-sources", {
url,
});
};