Skip to content

Commit

Permalink
Remove console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewchu16 committed Jan 16, 2025
1 parent ef07f57 commit 760374c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/modules/MeetupTitle/MeetupTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ const MeetupTitle = ({
let titleWidth = titleElement.getBoundingClientRect().width;
let containerWidth =
titleElement.parentElement?.getBoundingClientRect().width;
console.log(titleWidth, containerWidth);
// Shrink font size until it fits in the container or reaches the minimum font size
while (
containerWidth &&
Expand Down
1 change: 0 additions & 1 deletion src/pages/Join/Join.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ const Join = () => {
};

const handleParticipantChange = async (newParticipant: Participant) => {
console.log(newParticipant);
setParticipant(newParticipant);
setParticipants(
participants.map((p) =>
Expand Down

0 comments on commit 760374c

Please sign in to comment.