MED-198: add notification for new analysis result
This commit is contained in:
@@ -62,7 +62,10 @@ export const listOrders = async (
|
||||
credentials: 'include',
|
||||
})
|
||||
.then(({ orders }) => orders)
|
||||
.catch((err) => medusaError(err));
|
||||
.catch((err) => {
|
||||
console.error('Error receiving orders', { err });
|
||||
return medusaError(err);
|
||||
});
|
||||
};
|
||||
|
||||
export const listOrdersByIds = async (ids: string[]) => {
|
||||
|
||||
Reference in New Issue
Block a user