Skip to content

Commit c6c969f

Browse files
Fix indentation in transaction details error handling logic
Co-authored-by: joaquim.verges <[email protected]>
1 parent 17dc805 commit c6c969f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/tx/[id]/transaction-details-ui.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ export function TransactionDetailsUI({
5454
executionResult && "error" in executionResult
5555
? executionResult.error.message
5656
: executionResult && "revertData" in executionResult
57-
? executionResult.revertData?.revertReason
58-
: null;
57+
? executionResult.revertData?.revertReason
58+
: null;
5959
const errorDetails =
6060
executionResult && "error" in executionResult
6161
? executionResult.error

0 commit comments

Comments
 (0)