Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ export function ChatPageContent(props: {
(sessionId: string) => {
_setSessionId(sessionId);
// update page URL without reloading
window.history.replaceState({}, "", `/chat/${sessionId}`);
// THIS DOES NOT WORK ANYMORE!! - NEXT JS IS MONKEY PATCHING THIS TOO
// Until we find a better solution, we are just not gonna update the URL
// window.history.replaceState({}, "", `/chat/${sessionId}`);

// if the current page is landing page, link to /chat
// if current page is new /chat page, link to landing page
Expand Down
Loading