diff --git a/graph/migrate/src/lib/components/migration-timeline.tsx b/graph/migrate/src/lib/components/migration-timeline.tsx index d95c607877..76c118fc8a 100644 --- a/graph/migrate/src/lib/components/migration-timeline.tsx +++ b/graph/migrate/src/lib/components/migration-timeline.tsx @@ -554,7 +554,7 @@ function MigrationStateCircle({ }: MigrationStateCircleProps) { let bgColor = ''; let textColor = ''; - let Icon = ClockIcon; + let Icon = null; // Check if this migration is in the completed migrations const completedMigration = @@ -584,22 +584,22 @@ function MigrationStateCircle({ // Future migration (none of the states above) bgColor = 'bg-slate-300'; textColor = 'text-slate-700'; - Icon = ClockIcon; } return (
{isRunning ? ( - ) : ( + ) : Icon ? ( - )} + ) : null}
); }