Skip to content

Commit

Permalink
fix: Removed unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
CrawlerCode committed Jun 26, 2023
1 parent 62b25d0 commit 14480da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/time/TimeEntryListSkeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const TimeEntryListSkeleton = () => {
<h1 className="h-4 w-40 bg-gray-200 dark:bg-gray-700"></h1>
<span className="rounded h-5 w-12 bg-gray-200 dark:bg-gray-700"></span>
</div>
{[...Array(5).keys()].map((d) => {
{[...Array(5).keys()].map(() => {
return (
<div className="grid grid-cols-10 items-center gap-x-1">
<h4 className="col-span-1 h-3 w-8 bg-gray-200 dark:bg-gray-700"></h4>
Expand Down

0 comments on commit 14480da

Please sign in to comment.