Skip to content

Commit f480303

Browse files
committed
fix: linting
1 parent 12da74b commit f480303

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/namadillo/src/App/Transactions/TransactionCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const getVoteTransactionInfo = (tx: Tx["tx"]): VoteTransactionInfo => {
9797
let parsed;
9898
try {
9999
parsed = JSON.parse(tx.data);
100-
} catch (error) {
100+
} catch {
101101
parsed = tx.data;
102102
}
103103

@@ -132,7 +132,7 @@ const getRedelegationTransactionInfo = (
132132
let parsed;
133133
try {
134134
parsed = JSON.parse(tx.data);
135-
} catch (error) {
135+
} catch {
136136
parsed = tx.data;
137137
}
138138

0 commit comments

Comments
 (0)