Skip to content

Commit

Permalink
fix: deepScan
Browse files Browse the repository at this point in the history
  • Loading branch information
Innocent-Akim committed Nov 21, 2024
1 parent 7aea495 commit c747e36
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ export function EditTaskModal({ isOpen, closeModal, dataTimesheet }: IEditTaskMo
<div className="!flex items-center justify-between gap-2 w-full">
<div className="flex flex-col items-start justify-center ">
<CustomSelect
defaultValue={dataTimesheet?.timesheet?.status ?? ""}
ariaLabel={dataTimesheet?.timesheet?.status ?? ""}
defaultValue={dataTimesheet.timesheet?.status ?? ""}
ariaLabel={dataTimesheet.timesheet?.status ?? ""}
className="ring-offset-sidebar-primary-foreground w-[150px]"
options={statusTable?.flatMap((status) => status.label)}
renderOption={(option) => (
Expand Down

0 comments on commit c747e36

Please sign in to comment.