diff --git a/src/app/content/index.tsx b/src/app/content/index.tsx index b0e1205..7ae07b5 100644 --- a/src/app/content/index.tsx +++ b/src/app/content/index.tsx @@ -19,6 +19,7 @@ export default defineContentScript({ cssInjectionMode: 'ui', runAt: 'document_end', matches: ['https://*/*'], + async main(ctx) { const store = Remesh.store({ externs: [IndexDBStorageImpl, BrowserSyncStorageImpl, PeerRoomImpl, ToastImpl], @@ -32,7 +33,6 @@ export default defineContentScript({ append: 'last', mode: 'closed', onMount: (container) => { - // container.style.visibility = 'visible' const app = createElement('
') container.append(app) diff --git a/src/app/content/views/AppContainer/index.tsx b/src/app/content/views/AppContainer/index.tsx index 5aab1e4..223cf3e 100644 --- a/src/app/content/views/AppContainer/index.tsx +++ b/src/app/content/views/AppContainer/index.tsx @@ -10,7 +10,7 @@ export interface AppContainerProps { const AppContainer: FC