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 1af9c87 commit c5aa6b7Copy full SHA for c5aa6b7
src/routes/chat/[agentId]/[conversationId]/chat-box.svelte
@@ -3,7 +3,6 @@
3
import { Pane, Splitpanes } from 'svelte-splitpanes';
4
import Viewport from 'svelte-viewport-info';
5
import { page } from '$app/stores';
6
- import { goto } from '$app/navigation';
7
import Swal from 'sweetalert2';
8
import 'overlayscrollbars/overlayscrollbars.css';
9
import { OverlayScrollbars } from 'overlayscrollbars';
@@ -724,7 +723,7 @@
724
723
const searchParams = $page.url.searchParams;
725
const search = searchParams?.toString();
726
const url = search ? `${path}?${search}` : path;
727
- goto(url);
+ window.location.href = url;
728
}
729
730
function pinDashboard() {
0 commit comments