Skip to content

Commit 1a8e9e4

Browse files
chore: format
1 parent 3210839 commit 1a8e9e4

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

app/pages/splash.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff 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
))}

0 commit comments

Comments
 (0)