Skip to content

Commit

Permalink
bt
Browse files Browse the repository at this point in the history
  • Loading branch information
Abh1noob committed Mar 12, 2024
1 parent 26fda1f commit d9302e4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions devsoc24-portal-fe/src/components/team/leaveTeam.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ const LeaveTeam = () => {
<Button
type="submit"
className="bg-[#458B71]"
onClick={async () => {}}
// onClick={async () => {}}
>
Yes
</Button>
<Button
type="submit"
className="bg-[#458B71]"
onClick={async () => {}}
// onClick={async () => {}}
>
No
</Button>
Expand Down
10 changes: 5 additions & 5 deletions devsoc24-portal-fe/src/components/timeline/timelineComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ const TimelineComponent = (props: { count: number }) => {
<div className="flex h-full flex-row items-center">
{timelineData.slice(0, props.count).map((item, index) => {
return (
<div className="relative flex h-fit w-fit ">
<div className="relative flex h-fit w-fit " key={index}>
<Image
src={img1}
src={img1 as HTMLImageElement}
alt="completed"
height={0}
width={0}
Expand All @@ -48,7 +48,7 @@ const TimelineComponent = (props: { count: number }) => {

<div className="relative flex h-fit w-fit ">
<Image
src={img2}
src={img2 as HTMLImageElement}
alt="completed"
height={0}
width={0}
Expand All @@ -61,9 +61,9 @@ const TimelineComponent = (props: { count: number }) => {

{timelineData.slice(0, props.count).map((item, index) => {
return (
<div className="relative flex h-fit w-fit ">
<div className="relative flex h-fit w-fit " key={index}>
<Image
src={img3}
src={img3 as HTMLImageElement}
alt="completed"
height={0}
width={0}
Expand Down

0 comments on commit d9302e4

Please sign in to comment.