Fix jwt-token

This commit is contained in:
2025-08-18 07:06:52 +02:00
parent 5884bc58dc
commit b43fd2cee5

View File

@@ -142,22 +142,22 @@ const Dashboard = () => {
key={item.id} key={item.id}
className="relative bg-white pt-5 px-4 pb-12 sm:pt-6 sm:px-6 shadow rounded-lg overflow-hidden" className="relative bg-white pt-5 px-4 pb-12 sm:pt-6 sm:px-6 shadow rounded-lg overflow-hidden"
> >
<dt> <dt>
<div className={`absolute ${item.color} rounded-md p-3`}> <div className={`absolute ${item.color} rounded-md p-3`}>
<item.icon className="h-6 w-6 text-white" aria-hidden="true" /> <item.icon className="h-6 w-6 text-white" aria-hidden="true" />
</div> </div>
<p className="ml-16 text-sm font-medium text-gray-500 truncate"> <p className="ml-16 text-sm font-medium text-gray-500 truncate">
{item.name} {item.name}
</p> </p>
</dt> </dt>
<dd className="ml-16 pb-6 flex items-baseline sm:pb-7"> <dd className="ml-16 pb-6 flex items-baseline sm:pb-7">
<p className="text-2xl font-semibold text-gray-900"> <p className="text-2xl font-semibold text-gray-900">
{item.stat} {item.stat}
</p> </p>
</dd> </dd>
</div> </div>
))} ))}
</dl> </dl>
</div> </div>
{/* Charts */} {/* Charts */}