@clawcard/cli 1.1.5 → 1.1.6
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/package.json +1 -1
- package/src/commands/billing.js +2 -1
package/package.json
CHANGED
package/src/commands/billing.js
CHANGED
|
@@ -104,7 +104,8 @@ export async function billingTransactionsCommand() {
|
|
|
104
104
|
s.start("Fetching transactions...");
|
|
105
105
|
|
|
106
106
|
try {
|
|
107
|
-
const
|
|
107
|
+
const res = await getTransactions();
|
|
108
|
+
const txns = res.transactions || res;
|
|
108
109
|
s.stop("");
|
|
109
110
|
|
|
110
111
|
if (!txns.length) {
|