diff --git a/src/components/settings/PopularityBar.tsx b/src/components/settings/PopularityBar.tsx deleted file mode 100644 index 2ba53344..00000000 --- a/src/components/settings/PopularityBar.tsx +++ /dev/null @@ -1,24 +0,0 @@ -/** - * Five-segment popularity bar, filled relative to the most-downloaded theme in - * the catalogue (so the leader reads full and the rest scale against it). With - * few downloads it sits near-empty and fills in organically as counts grow. - * Decorative — the exact download number sits next to it as the real value. - */ -export function PopularityBar({ value, max }: { value: number; max: number }) { - const filled = max > 0 ? Math.round((Math.max(0, value) / max) * 5) : 0; - return ( -