get rid of double emojis

This commit is contained in:
AI Christianson 2024-12-12 07:22:05 -05:00
parent 5596553945
commit 926582e83c
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ def print_stage_header(stage: str) -> None:
icon = icons.get(stage_key, '🚀')
# Create styled rule with icon
rule_content = f"{icon} {stage_title} {icon}"
rule_content = f"{icon} {stage_title}"
console.print()
console.print(Rule(rule_content, style="green bold"))
console.print()