Skip to content

Commit

Permalink
fix: fixing templating issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sandoche committed Sep 12, 2024
1 parent b460621 commit 9537d3e
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions src/app/_components/BiddingHistory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,22 @@ export const BiddingHistory = async ({ round }: { round: bigint }) => {
</thead>
<Suspense
fallback={
<tr>
<th scope="col" className="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-white sm:pl-0">
<SkeletonBlob className="w-full h-2" />
</th>
<th scope="col" className="px-3 py-3.5 text-left text-sm font-semibold text-white">
<SkeletonBlob className="w-full h-2" />
</th>
<th scope="col" className="px-3 py-3.5 text-left text-sm font-semibold text-white">
<SkeletonBlob className="w-full h-2" />
</th>
<th scope="col" className="px-3 py-3.5 text-left text-sm font-semibold text-white">
<SkeletonBlob className="w-full h-2" />
</th>
</tr>
<tbody>
<tr>
<th scope="col" className="py-3.5 pl-4 pr-3 text-left text-sm font-semibold text-white sm:pl-0">
<SkeletonBlob className="w-full h-2" />
</th>
<th scope="col" className="px-3 py-3.5 text-left text-sm font-semibold text-white">
<SkeletonBlob className="w-full h-2" />
</th>
<th scope="col" className="px-3 py-3.5 text-left text-sm font-semibold text-white">
<SkeletonBlob className="w-full h-2" />
</th>
<th scope="col" className="px-3 py-3.5 text-left text-sm font-semibold text-white">
<SkeletonBlob className="w-full h-2" />
</th>
</tr>
</tbody>
}
>
<BiddingHistoryData round={round} />
Expand Down

0 comments on commit 9537d3e

Please sign in to comment.