refactor(PendingOrders): address PR comments
gitea/hedera-web/pipeline/pr-beta This commit looks good Details

This commit is contained in:
taro 2025-03-25 05:50:08 -03:00
parent 859ffbd1fd
commit 512b0b5e9c
2 changed files with 6 additions and 7 deletions

View File

@ -32,7 +32,7 @@ const getOrders = async (clientFk) => {
const filter = {
where: {
clientFk,
isConfirmed: 0,
isConfirmed: false,
source_app: 'WEB',
},
include: [

View File

@ -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 }