diff --git a/packages/cookie-banner/src/consent.ts b/packages/cookie-banner/src/consent.ts index db6ae72aa..2b9e4bcbd 100644 --- a/packages/cookie-banner/src/consent.ts +++ b/packages/cookie-banner/src/consent.ts @@ -39,9 +39,6 @@ export class ConsentManager { } subscribe(cb: Callback): () => void { - if (this._ready) { - cb(this._snapshot); - } const offReady = this.onReady(cb); const offChange = this.onChange(cb); return () => { offReady(); offChange(); };