fix: github setup workflow

This commit is contained in:
sriram veeraghanta 2024-05-15 17:42:08 +05:30
parent e1197f2b8f
commit 0587c50ced
11 changed files with 54 additions and 49 deletions

View file

@ -1,3 +0,0 @@
export * from "./auth.service";
export * from "./instance.service";
export * from "./user.service";

View file

@ -13,8 +13,7 @@ export class InstanceService extends APIService {
return this.get<IInstance>("/api/instances/")
.then((response) => response.data)
.catch((error) => {
console.log("error", error);
throw error;
throw error?.response?.data;
});
}