diff --git a/src/pages/Subscription.tsx b/src/pages/Subscription.tsx
index ec29ae3..fcef62e 100644
--- a/src/pages/Subscription.tsx
+++ b/src/pages/Subscription.tsx
@@ -692,18 +692,37 @@ export default function Subscription() {
})}
-
- {Array.from({ length: subscription.device_limit }, (_, i) => (
+ {subscription.device_limit <= 10 ? (
+
+ {Array.from({ length: subscription.device_limit }, (_, i) => (
+
+ ))}
+
+ ) : (
+
+ className="h-[6px] w-full overflow-hidden rounded-full"
+ style={{ background: g.textGhost }}
+ >
+
0 ? '4px' : '0px',
+ }}
+ />
+
+
+ )}
)}