diff options
author | Michael Hunteman <michael@huntm.net> | 2024-07-06 15:24:05 -0700 |
---|---|---|
committer | Michael Hunteman <michael@huntm.net> | 2024-07-06 15:24:43 -0700 |
commit | bacefa8db406aa188d27670649bb57f12a3b4c47 (patch) | |
tree | a6fb8996b940b6016d314d29fdd265ce6d74275e /client/src/components | |
parent | b9b8099da1a098300d11e0f479d56e24e363e076 (diff) |
Rename to guest
Diffstat (limited to 'client/src/components')
-rw-r--r-- | client/src/components/Rsvp.tsx | 2 |
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 /> ); } |