money-lover-app-client 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bundle.js CHANGED
@@ -6542,7 +6542,7 @@ const getCategories = async (client, walletId) => {
6542
6542
  const allCategories = await client.getCategories(walletId);
6543
6543
  // Api may return all categories even when the walletId is specified,
6544
6544
  // so we filter them here to return only the categories that belong to the specified walletId.
6545
- return allCategories.filter((category) => category.walletId === walletId);
6545
+ return allCategories.filter((category) => !category.exclude_accounts.includes(walletId));
6546
6546
  };
6547
6547
 
6548
6548
  const debug$1 = process.env.DEBUG === "true";