Skip to content

Commit

Permalink
doc: fix await example for getPendingTransactions
Browse files Browse the repository at this point in the history
  • Loading branch information
0xFlicker committed May 26, 2024
1 parent 3615a47 commit 5a4c994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/sdk/protocol-kit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ await apiKit.proposeTransaction({
Recall that you created the `apiKit` in [Initialize the API Kit](./#initialize-the-safe-api-kit).

```tsx
const pendingTransactions = await apiKit.getPendingTransactions(safeAddress).results
const pendingTransactions = (await apiKit.getPendingTransactions(safeAddress)).results
```

### Confirm the transaction: Second confirmation
Expand Down

0 comments on commit 5a4c994

Please sign in to comment.