Skip to content

Commit

Permalink
formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bl20052005 committed Oct 31, 2024
1 parent b44723e commit ffa64a3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion apps/site/src/app/schedule/Assets/Circle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const EventCircle: React.FC<CircleProps> = ({
endTime,
position,
up,
time
time,
}) => {
let curTime = new Date(time);
return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,7 @@ const ClipboardSchedule: React.FC<ClipboardScheduleProps> = ({ schedule }) => {
return () => clearInterval(timeUpdater || undefined);
}, []);

return (
<>
</>
);
return <></>;
};

export default ClipboardSchedule;
3 changes: 1 addition & 2 deletions apps/site/src/app/schedule/DayTwo/DayTwo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ const DayTwo: React.FC<DayTwoProps> = ({ schedule, time }) => {
{ top: "94%", left: "20%" },
{ top: "95%", left: "60%" },
{ top: "99%", left: "92%" },

];
return (
<>
Expand All @@ -46,7 +45,7 @@ const DayTwo: React.FC<DayTwoProps> = ({ schedule, time }) => {
startTime={event.startTime}
endTime={event.endTime}
position={positions[i]}
up={i == schedule.length - 1 ? true: false}
up={i == schedule.length - 1 ? true : false}
time={time}
/>
))}
Expand Down
14 changes: 7 additions & 7 deletions apps/site/src/app/schedule/Header/Header.module.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.header {
margin-top: 200px;
height: auto;
display: flex;
flex-direction: column;
gap: 50px;
align-items: center;
}
margin-top: 200px;
height: auto;
display: flex;
flex-direction: column;
gap: 50px;
align-items: center;
}

0 comments on commit ffa64a3

Please sign in to comment.