We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25ba321 commit 5c3fb0aCopy full SHA for 5c3fb0a
app/javascript/components/rooms/room/join/JoinCard.jsx
@@ -71,7 +71,7 @@ export default function JoinCard() {
71
72
useEffect(() => { // set cookie to return to if needed
73
const date = new Date();
74
- date.setTime(date.getTime() + (60 * 1000)); // expire the cookie in 1min
+ date.setTime(date.getTime() + (60 * 10000)); // expire the cookie in 10min
75
document.cookie = `location=${path};path=/;expires=${date.toGMTString()}`;
76
77
return () => { // delete redirect location when unmounting
0 commit comments