Skip to content

Commit 532387c

Browse files
nits
1 parent 76a2e09 commit 532387c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

explorer/src/App.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ interface ViewData {
4242
timeoutId?: NodeJS.Timeout;
4343
}
4444

45-
const TIMEOUT_DURATION = 2000; // 2 seconds
45+
const TIMEOUT_DURATION = 1500; // 1.5 seconds
4646

4747
// Custom marker icons - updated for monochrome style with circular appearance
4848
const createCustomIcon = () => {
@@ -475,10 +475,10 @@ const App: React.FC = () => {
475475

476476
{/* Legend */}
477477
<div className="legend-container">
478-
<LegendItem color="#aaa" label="Seed to Notarized" />
479-
<LegendItem color="#d9ead3ff" label="Notarized to Finalized" />
480-
<LegendItem color="#274e13ff" label="Finalization Point" />
481-
<LegendItem color="#f4ccccff" label="Nullified" />
478+
<LegendItem color="#aaa" label="Notarization" />
479+
<LegendItem color="#d9ead3ff" label="Finalization" />
480+
<LegendItem color="#274e13ff" label="Finalized" />
481+
<LegendItem color="#f4ccccff" label="Skipped" />
482482
</div>
483483

484484
{/* Bars */}
@@ -616,7 +616,7 @@ const Bar: React.FC<BarProps> = ({ viewData, currentTime, isMobile }) => {
616616
}
617617
} else {
618618
// Timed out
619-
inBarText = "NULLIFIED";
619+
inBarText = "SKIPPED";
620620
}
621621

622622
return (

0 commit comments

Comments
 (0)