@@ -122,7 +122,6 @@ export default function SdkTab() {
122122 title = "Status"
123123 status = { canConnectStatus }
124124 color = { canConnectStatusColor }
125- showCaret = { isResponsive }
126125 />
127126 </ div >
128127
@@ -144,7 +143,6 @@ export default function SdkTab() {
144143 : "" )
145144 }
146145 color = { versionStatusColor }
147- showCaret = { isResponsive }
148146 />
149147 </ div >
150148
@@ -159,7 +157,6 @@ export default function SdkTab() {
159157 title = "Tracking Callback"
160158 status = { trackingCallbackStatus }
161159 color = { trackingCallbackStatusColor }
162- showCaret = { isResponsive }
163160 />
164161 </ div >
165162
@@ -174,7 +171,6 @@ export default function SdkTab() {
174171 title = "Payload Security"
175172 status = { securityStatus }
176173 color = "gray"
177- showCaret = { isResponsive }
178174 />
179175 </ div >
180176
@@ -189,7 +185,6 @@ export default function SdkTab() {
189185 title = "Sticky Bucketing"
190186 status = { usingStickyBucketing }
191187 color = "gray"
192- showCaret = { isResponsive }
193188 />
194189 </ div >
195190
@@ -204,7 +199,6 @@ export default function SdkTab() {
204199 title = "Streaming"
205200 status = { streaming }
206201 color = "gray"
207- showCaret = { isResponsive }
208202 />
209203 </ div >
210204
@@ -219,7 +213,6 @@ export default function SdkTab() {
219213 title = "SDK Payload"
220214 status = { hasPayload }
221215 color = "gray"
222- showCaret = { isResponsive }
223216 />
224217 </ div >
225218
@@ -234,7 +227,6 @@ export default function SdkTab() {
234227 title = "Log Event Callback"
235228 status = { usingLogEvent }
236229 color = "gray"
237- showCaret = { isResponsive }
238230 />
239231 </ div >
240232
@@ -249,7 +241,6 @@ export default function SdkTab() {
249241 title = "On Feature Usage Callback"
250242 status = { usingOnFeatureUsage }
251243 color = "gray"
252- showCaret = { isResponsive }
253244 />
254245 </ div >
255246 </ >
@@ -273,12 +264,10 @@ function ItemStatus({
273264 title,
274265 status,
275266 color,
276- showCaret,
277267} : {
278268 title : string ;
279269 status ?: string | boolean ;
280270 color : "green" | "red" | "gray" | "orange" ;
281- showCaret : boolean ;
282271} ) {
283272 if ( typeof status === "boolean" ) {
284273 status = status ? "Yes" : "No" ;
@@ -288,11 +277,7 @@ function ItemStatus({
288277 < div className = "title pl-4 pr-6" > { title } </ div >
289278 < div className = "flex pr-4 items-center flex-shrink-0 text-sm" >
290279 < Text color = { color } > { status } </ Text >
291- { showCaret && (
292- < div className = "ml-5 font-bold" >
293- < PiCaretRight />
294- </ div >
295- ) }
280+ < PiCaretRight className = "ml-5 text-gray-10" />
296281 </ div >
297282 </ >
298283 ) ;
0 commit comments