File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -218,17 +218,16 @@ export default function Home({ loaderData }: Route.ComponentProps) {
218218 < dl className = "grid grid-cols-1 gap-x-6 gap-y-16 md:grid-cols-2" >
219219 { stats . map ( ( { svgId, count, label } ) => (
220220 < div key = { svgId } className = "flex w-[308px] gap-2" >
221- < svg
222- className = "h-8 w-8 text-gray-600"
223- aria-hidden = "true"
224- >
221+ < svg className = "h-8 w-8 text-gray-600" aria-hidden = "true" >
225222 < use href = { `${ iconsHref } #${ svgId } ` } />
226223 </ svg >
227224 < div className = "flex flex-col" >
228225 < dd className = "text-2xl font-semibold text-gray-700 dark:text-gray-200" >
229226 { count ?. toLocaleString ( "en-US" ) }
230227 </ dd >
231- < dt className = "text-gray-500 dark:text-gray-400" > { label } </ dt >
228+ < dt className = "text-gray-500 dark:text-gray-400" >
229+ { label }
230+ </ dt >
232231 </ div >
233232 </ div >
234233 ) ) }
You can’t perform that action at this time.
0 commit comments