refactor(PendingOrders): address PR comments
gitea/hedera-web/pipeline/pr-beta This commit looks good
Details
gitea/hedera-web/pipeline/pr-beta This commit looks good
Details
This commit is contained in:
parent
859ffbd1fd
commit
512b0b5e9c
|
@ -32,7 +32,7 @@ const getOrders = async (clientFk) => {
|
|||
const filter = {
|
||||
where: {
|
||||
clientFk,
|
||||
isConfirmed: 0,
|
||||
isConfirmed: false,
|
||||
source_app: 'WEB',
|
||||
},
|
||||
include: [
|
||||
|
|
|
@ -7,12 +7,11 @@ const userStore = useUserStore();
|
|||
export const onUserId = (cb) => watch(
|
||||
() => userStore?.user?.id,
|
||||
async userId => {
|
||||
if (userId) {
|
||||
try {
|
||||
await cb(userId);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
if (!userId) return;
|
||||
try {
|
||||
await cb(userId);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
},
|
||||
{ immediate: true }
|
||||
|
|
Loading…
Reference in New Issue