diff --git a/apps/extension/src/content-scripts/injected-penumbra-global.ts b/apps/extension/src/content-scripts/injected-penumbra-global.ts index 71c1ac2f..1e3f6639 100644 --- a/apps/extension/src/content-scripts/injected-penumbra-global.ts +++ b/apps/extension/src/content-scripts/injected-penumbra-global.ts @@ -57,16 +57,6 @@ class PraxInjection { private stateEvents = new EventTarget(); private injection: Readonly = Object.freeze({ - /** - * Meet the 'request' method of the old page API to mitigate incompatibility - * with pd v0.80.0's bundled minifront. This prevents connection failure. - * @todo Remove when bundled frontends are updated beyond `a31d54a` - * @issue https://github.com/prax-wallet/web/issues/175 - */ - request: async () => { - await Promise.resolve(this.port ?? this.postConnectRequest()); - }, - connect: () => Promise.resolve(this.port ?? this.postConnectRequest()), disconnect: () => this.postDisconnectRequest(), isConnected: () => Boolean(this.port && this.presentState === PenumbraState.Connected),