+
@@ -180,6 +184,7 @@
value="previous"
class="btn btn-outline"
disabled={!hasPreviousPage || loading}
+ aria-label="View previous page of transactions"
on:click={() => {
if (transactions.length) {
endingBefore = transactions[0].id;
@@ -196,6 +201,7 @@
value="next"
class="btn btn-outline"
disabled={!hasNextPage || loading}
+ aria-label="View next page of transactions"
on:click={() => {
if (transactions.length) {
startingAfter = transactions[transactions.length - 1].id;