Introducing more menu items on the "Publised" button in the editor. You can now unpublish a typebot and close it to new responses
6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
export const refreshUser = async () => {
|
|
await fetch('/api/auth/session?update')
|
|
const event = new Event('visibilitychange')
|
|
document.dispatchEvent(event)
|
|
}
|