Skip to content

Commit 277e5b9

Browse files
committed
add missing await
1 parent 905331c commit 277e5b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/paystack/actions/export-transactions/export-transactions.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
key: "paystack-export-transactions",
55
name: "Export Transactions",
66
description: "Export transactions from Paystack. See the documentation (https://paystack.com/docs/api/transaction/#export)",
7-
version: "0.0.1",
7+
version: "0.0.2",
88
type: "action",
99
props: {
1010
paystack,
@@ -37,7 +37,7 @@ export default {
3737
status: this.status,
3838
};
3939

40-
const response = this.paystack.exportTransactions({
40+
const response = await this.paystack.exportTransactions({
4141
$,
4242
params,
4343
});

0 commit comments

Comments
 (0)