Fix jwt-token

This commit is contained in:
2025-08-18 07:03:59 +02:00
parent f002130c1e
commit 5884bc58dc

View File

@@ -138,10 +138,10 @@ const Dashboard = () => {
</div>
<dl className="mt-5 grid grid-cols-1 gap-5 sm:grid-cols-2 lg:grid-cols-4">
{stats.map((item) => (
<div
key={item.id}
className="relative bg-white pt-5 px-4 pb-12 sm:pt-6 sm:px-6 shadow rounded-lg overflow-hidden"
>
<div
key={item.id}
className="relative bg-white pt-5 px-4 pb-12 sm:pt-6 sm:px-6 shadow rounded-lg overflow-hidden"
>
<dt>
<div className={`absolute ${item.color} rounded-md p-3`}>
<item.icon className="h-6 w-6 text-white" aria-hidden="true" />
@@ -156,7 +156,7 @@ const Dashboard = () => {
</p>
</dd>
</div>
))}
))}
</dl>
</div>