diff --git a/ui/src/app/block/[hash]/page.tsx b/ui/src/app/block/[hash]/page.tsx
index 69f54fc..71133e0 100644
--- a/ui/src/app/block/[hash]/page.tsx
+++ b/ui/src/app/block/[hash]/page.tsx
@@ -128,11 +128,6 @@ function TransactionRow({
{tx.hash}
)}
- {hasBundle && (
-
- Bundle
-
- )}
{tx.from.slice(0, 6)}...{tx.from.slice(-4)}
diff --git a/ui/src/app/bundles/[uuid]/page.tsx b/ui/src/app/bundles/[uuid]/page.tsx
index 95187f3..9433e53 100644
--- a/ui/src/app/bundles/[uuid]/page.tsx
+++ b/ui/src/app/bundles/[uuid]/page.tsx
@@ -156,11 +156,9 @@ function Card({
function TransactionDetails({
tx,
index,
- isReverting,
}: {
tx: BundleTransaction;
index: number;
- isReverting: boolean;
}) {
const [expanded, setExpanded] = useState(index === 0);
@@ -180,7 +178,6 @@ function TransactionDetails({
{tx.hash.slice(0, 10)}...{tx.hash.slice(-8)}
- {isReverting && Reverting}
{tx.signer.slice(0, 6)}...{tx.signer.slice(-4)} →{" "}
@@ -480,7 +477,6 @@ export default function BundlePage({ params }: PageProps) {
.filter((e) => e.data?.bundle)
.map((e) => e.data.bundle)
.pop();
- const revertingHashes = new Set(latestBundle?.reverting_tx_hashes || []);
return (
@@ -558,12 +554,7 @@ export default function BundlePage({ params }: PageProps) {
Transactions
{latestBundle.txs.map((tx, index) => (
-
+
))}