Skip to content

Commit

Permalink
Merge pull request #231 from iceljc/features/refine-chat-window
Browse files Browse the repository at this point in the history
Features/refine chat window
  • Loading branch information
iceljc authored Oct 1, 2024
2 parents 93021f3 + cf04f53 commit ad86b5b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/chat/[agentId]/[conversationId]/chat-box.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,9 @@
});
function openFrame() {
window.parent.postMessage({ action: "open" }, "*");
if (window.location != window.parent.location) {
window.parent.postMessage({ action: "open" }, "*");
}
}
function resizeChatWindow() {
Expand Down

0 comments on commit ad86b5b

Please sign in to comment.