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 64ffe19 commit fbc52d4Copy full SHA for fbc52d4
apps/dashboard/src/app/nebula-app/(app)/components/ChatPageContent.tsx
@@ -161,7 +161,9 @@ export function ChatPageContent(props: {
161
(sessionId: string) => {
162
_setSessionId(sessionId);
163
// update page URL without reloading
164
- window.history.replaceState({}, "", `/chat/${sessionId}`);
+ // THIS DOES NOT WORK ANYMORE!! - NEXT JS IS MONKEY PATCHING THIS TOO
165
+ // Until we find a better solution, we are just not gonna update the URL
166
+ // window.history.replaceState({}, "", `/chat/${sessionId}`);
167
168
// if the current page is landing page, link to /chat
169
// if current page is new /chat page, link to landing page
0 commit comments