@@ -92,7 +92,13 @@ export function ComparisonSection() {
9292 </ div >
9393 </ td >
9494 < td className = "py-4 px-4 md:px-6 text-center" >
95- { item . paseo ? (
95+ { typeof item . paseo === "string" ? (
96+ < div className = "flex justify-center items-center min-h-[40px]" >
97+ < span className = "text-sm md:text-base font-medium text-muted-foreground" >
98+ { item . paseo }
99+ </ span >
100+ </ div >
101+ ) : item . paseo ? (
96102 < div className = "flex justify-center" >
97103 < div className = "p-2 rounded-full" >
98104 < Check className = "w-5 h-5 text-green-600 dark:text-green-400" />
@@ -107,7 +113,13 @@ export function ComparisonSection() {
107113 ) }
108114 </ td >
109115 < td className = "py-4 px-4 md:px-6 text-center" >
110- { item . kusama ? (
116+ { typeof item . kusama === "string" ? (
117+ < div className = "flex justify-center items-center min-h-[40px]" >
118+ < span className = "text-sm md:text-base font-medium text-muted-foreground" >
119+ { item . kusama }
120+ </ span >
121+ </ div >
122+ ) : item . kusama ? (
111123 < div className = "flex justify-center" >
112124 < div className = "p-2 rounded-full" >
113125 < Check className = "w-5 h-5 text-green-600 dark:text-green-400" />
@@ -122,7 +134,13 @@ export function ComparisonSection() {
122134 ) }
123135 </ td >
124136 < td className = "py-4 px-4 md:px-6 text-center" >
125- { item . polkadot ? (
137+ { typeof item . polkadot === "string" ? (
138+ < div className = "flex justify-center items-center min-h-[40px]" >
139+ < span className = "text-sm md:text-base font-medium text-muted-foreground" >
140+ { item . polkadot }
141+ </ span >
142+ </ div >
143+ ) : item . polkadot ? (
126144 < div className = "flex justify-center" >
127145 < div className = "p-2 rounded-full" >
128146 < Check className = "w-5 h-5 text-green-600 dark:text-green-400" />
0 commit comments