summaryrefslogtreecommitdiff
path: root/client/src/components/Rsvp.tsx
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2024-07-06 15:24:05 -0700
committerMichael Hunteman <michael@huntm.net>2024-07-06 15:24:43 -0700
commitbacefa8db406aa188d27670649bb57f12a3b4c47 (patch)
treea6fb8996b940b6016d314d29fdd265ce6d74275e /client/src/components/Rsvp.tsx
parentb9b8099da1a098300d11e0f479d56e24e363e076 (diff)
Rename to guest
Diffstat (limited to 'client/src/components/Rsvp.tsx')
-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 fbcaf4a..d908f75 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="/guests/login" state={{ from: location }} replace />
+ <Navigate to="/guest/login" state={{ from: location }} replace />
);
}