add feedback button in sidebar

This commit is contained in:
Gregor Vostrak
2025-10-01 13:10:29 +02:00
parent 1c787a0ad0
commit 4623697f79
3 changed files with 25 additions and 14 deletions

View File

@@ -0,0 +1,9 @@
export function openFeedback(): void {
if (
typeof window !== 'undefined' &&
'showChatWindow' in window &&
typeof window.showChatWindow === 'function'
) {
window.showChatWindow();
}
}