summaryrefslogtreecommitdiff
path: root/client/src/components
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-08-28 18:07:22 -0700
committerMichael Hunteman <michael@huntm.net>2024-08-28 18:07:22 -0700
commit1d2ffb8a2b6af752b6fd091e8e59682625c2b495 (patch)
tree97ddc1a0318d280cd6650f59d638e027d213263e /client/src/components
parent096a08708e2310becba56a237ef63b5cf6e3c4c4 (diff)
Make guests endpoint plural
Diffstat (limited to 'client/src/components')
-rw-r--r--client/src/components/Rsvp.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/components/Rsvp.tsx b/client/src/components/Rsvp.tsx
index ab83cd7..d694393 100644
--- a/client/src/components/Rsvp.tsx
+++ b/client/src/components/Rsvp.tsx
@@ -22,7 +22,7 @@ function Rsvp() {
<Outlet context={auth?.guest} />
</>
) : (
- <Navigate to="/guest/login" state={{ from: location }} replace />
+ <Navigate to="/guests/login" state={{ from: location }} replace />
);
}