Skip to content

Commit

Permalink
Fix Custom Event Comparison (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
yatharth-b authored Apr 2, 2024
1 parent 594219a commit babc191
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Calendar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default function Calendar({

const meetings: CommonMeetingObject[] = crnMeetings as CommonMeetingObject[];

if (!compare || pinSelf) {
if (!compare && pinSelf) {
// Add events to meetings array
meetings.push(
...events.map((event) => {
Expand Down

0 comments on commit babc191

Please sign in to comment.