Skip to content

Commit

Permalink
fix:cspell
Browse files Browse the repository at this point in the history
  • Loading branch information
Innocent-Akim committed Nov 26, 2024
1 parent 7708bf9 commit aa52bc3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const CalendarDataView = ({ data, t }: { data?: GroupedTimesheet[], t: Translati
<span className="text-base font-normal text-gray-400 uppercase text-[12px]">
{status === 'DENIED' ? 'REJECTED' : status}
</span>
<span className="text-gray-400 text-[14px]">({rows?.length})</span>
<span className="text-gray-400 text-[14px]">({rows.length})</span>
</div>
</div>
<div className="flex items-center space-x-2">
Expand All @@ -89,7 +89,7 @@ const CalendarDataView = ({ data, t }: { data?: GroupedTimesheet[], t: Translati
</div>
</AccordionTrigger>
<AccordionContent className="flex flex-col w-full gap-y-2">
{rows?.map((task) => (
{rows.map((task) => (
<div
key={task.id}
style={{
Expand Down

0 comments on commit aa52bc3

Please sign in to comment.