Skip to content

Commit

Permalink
chore: fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
evereq committed Nov 14, 2023
1 parent f472888 commit 668664c
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function DueDates() {
// Button Props
buttonVariant={'link'}
buttonClassName={'p-0 decoration-transparent h-[0.875rem] w-20'}
// Calenar Props
// Calendar Props
customInput={
<div
className={clsxm(
Expand Down Expand Up @@ -152,7 +152,7 @@ function DueDates() {
// Button Props
buttonVariant={'link'}
buttonClassName={'p-0 decoration-transparent h-[0.875rem] w-20'}
// Calenar Props
// Calendar Props
customInput={
<div
className={clsxm(
Expand All @@ -169,8 +169,6 @@ function DueDates() {
}
selected={$dueDate.current ? (new Date($dueDate.current) as Date) : undefined}
onSelect={(date) => {
// const cdate = new Date();

if (
(!$startDate.current && date) ||
($startDate.current && date && date >= $startDate.current)
Expand Down Expand Up @@ -276,7 +274,7 @@ const ManageMembersPopover = (memberList: OT_Member[], task: ITeamTask | null) =
style={{ boxShadow: 'rgba(0, 0, 0, 0.12) -24px 17px 49px' }}
>
{({ close }) => (
<div className="max-h-72 scrollbar-hide overflow-y-scroll">
<div className="overflow-y-scroll max-h-72 scrollbar-hide">
{assignedTaskMembers.map((member, index) => (
<div
className="flex items-center justify-between w-auto h-8 gap-1 mt-1 hover:cursor-pointer hover:brightness-95 dark:hover:brightness-105"
Expand Down

0 comments on commit 668664c

Please sign in to comment.