فهرست منبع

chore: cleanup dead code

adamdottv 9 ماه پیش
والد
کامیت
a33e3e25b6
1فایلهای تغییر یافته به همراه0 افزوده شده و 13 حذف شده
  1. 0 13
      internal/tui/styles/icons.go

+ 0 - 13
internal/tui/styles/icons.go

@@ -10,16 +10,3 @@ const (
 	SpinnerIcon  string = "⟳"
 	DocumentIcon string = "🖼"
 )
-
-// CircledDigit returns the Unicode circled digit/number for 0‑20.
-// out‑of‑range → "".
-func CircledDigit(n int) string {
-	switch {
-	case n == 0:
-		return "\u24EA" // ⓪
-	case 1 <= n && n <= 20:
-		return string(rune(0x2460 + n - 1)) // ①–⑳
-	default:
-		return ""
-	}
-}