Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/sprints page #150

Closed
wants to merge 9 commits into from
Closed
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export default function SprintActions({
className="group"
disabled={true}
>
<RocketLaunchIcon className="h-[18px] w-[18px]" />
<SolidRocketLaunchIcon className="h-[18px] w-[18px]" />
Voyage Submitted
</Button>
);
Expand All @@ -108,7 +108,7 @@ export default function SprintActions({
className="group"
disabled={true}
>
<SolidRocketLaunchIcon className="h-[18px] w-[18px]" />
<RocketLaunchIcon className="h-[18px] w-[18px]" />
Submit Voyage
</Button>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function Sections({
id: Forms.notes,
title: "notes",
icon: <DocumentTextIcon aria-hidden="true" />,
isAdded: notes !== undefined,
isAdded: notes !== null,
children: <Notes data={notes} />,
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const CheckboxGroupItem = React.forwardRef<
className="peer hidden"
/>
<span className="flex h-6 w-6 items-center justify-center rounded border border-neutral/40 bg-base-200 transition-all group-hover:bg-base-100 peer-checked:border-base-300 group-hover:peer-checked:border-neutral-content [&>*]:hidden [&>*]:text-base-300 peer-checked:[&>*]:block group-hover:peer-checked:[&>*]:text-neutral-content">
<CheckIcon className="hidden transition-all" />
<CheckIcon className="hidden h-full w-full transition-all" />
</span>
<span className="transition-all peer-checked:text-base-300">{label}</span>
</Label>
Expand Down
1 change: 1 addition & 0 deletions src/utils/getCurrentSprint.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ export function getCurrentSprint(sprints: Sprint[]) {
end: sprint.endDate,
}),
);

return currentSprint;
}
Loading