diff --git a/src/lib/Jitsi.svelte b/src/lib/Jitsi.svelte index a18e35d..b3db2b8 100644 --- a/src/lib/Jitsi.svelte +++ b/src/lib/Jitsi.svelte @@ -49,11 +49,6 @@ interact with the Jitsi instance directly without causing a re-render. * interface. */ joinedOverlay?: Snippet<[api: JitsiMeetExternalAPI]>; - /** - * Optional snippet rendered after the user has left the meeting. Can be used to - * provide a farewell message or other post-meeting content. - */ - left?: Snippet; /** * Callback function that is called when the Jitsi API is loaded. Can * be used to provide a loading indicator until the API is ready. @@ -73,7 +68,6 @@ interact with the Jitsi instance directly without causing a re-render. loading, holdLoadingUntilJoined = false, joinedOverlay, - left, onapiready, onjoin, onleave @@ -153,10 +147,6 @@ interact with the Jitsi instance directly without causing a re-render.
{@render joinedOverlay(api)}
{/if} - {#if leftMeeting} -
{@render left?.()}
- {/if} -