docs: fix svelte app unmount code (#1673)

This commit is contained in:
Hyunbin Seo
2025-06-05 14:48:37 +09:00
committed by GitHub
parent 030f23d2e9
commit e1f3d75ac4
+3 -7
View File
@@ -211,9 +211,7 @@ export default defineContentScript({
anchor: 'body',
onMount: (container) => {
// Create the Svelte app inside the UI container
mount(App, {
target: container,
});
return mount(App, { target: container });
},
onRemove: (app) => {
// Destroy the app when the UI is removed
@@ -396,11 +394,9 @@ export default defineContentScript({
anchor: 'body',
onMount: (container) => {
// Create the Svelte app inside the UI container
mount(App, {
target: container,
});
return mount(App, { target: container });
},
onRemove: () => {
onRemove: (app) => {
// Destroy the app when the UI is removed
unmount(app);
},