From 0fe528b19ef9e7459ee6c4655b2e27b2647ead9e Mon Sep 17 00:00:00 2001 From: Muneer320 Date: Wed, 8 Oct 2025 00:26:37 +0530 Subject: [PATCH] Fix: Swap box corner strings --- internal/display/display.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/display/display.go b/internal/display/display.go index 4a88abb..767d490 100644 --- a/internal/display/display.go +++ b/internal/display/display.go @@ -112,10 +112,10 @@ func ShowCommitMessage(message string) { WithBoxStyle(pterm.NewStyle(pterm.FgLightGreen)). WithHorizontalString("─"). WithVerticalString("│"). - WithTopLeftCornerString("┌"). - WithTopRightCornerString("┐"). - WithBottomLeftCornerString("└"). - WithBottomRightCornerString("┘") + WithTopLeftCornerString("┘"). + WithTopRightCornerString("└"). + WithBottomLeftCornerString("┐"). + WithBottomRightCornerString("┌") panel.Println(pterm.LightGreen(message)) }