Skip to content

Commit

Permalink
Update index.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
amykapernick authored Aug 4, 2024
1 parent 2d1de3b commit 87c31cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/guest/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type GuestProps = {
const Guest = ({ people, guest }: GuestProps) => {
const [openSection, setOpenSection] = useState(false);
const status = statuses[guest.status];
const pastDate = new Date("2024-08-05") <= new Date();
const pastDate = new Date("2024-08-15") <= new Date();
const rsvpOpen = openSection || pastDate;

console.log({
Expand Down

0 comments on commit 87c31cc

Please sign in to comment.