diff --git a/packages/p2p/src/stores/my-ads-store.js b/packages/p2p/src/stores/my-ads-store.js index 189c7db41f3d..8817cbdc3e8a 100644 --- a/packages/p2p/src/stores/my-ads-store.js +++ b/packages/p2p/src/stores/my-ads-store.js @@ -125,7 +125,7 @@ export default class MyAdsStore extends BaseStore { if (response) { if (!response.error) { const { get_account_status } = response; - const { status } = get_account_status.authentication.identity; + const { status } = get_account_status?.authentication?.identity ?? {}; this.root_store.general_store.setPoiStatus(status); } else { this.setErrorMessage(response.error);