diff --git a/frontend/components/notifications/management/NotificationsManagementNetwork.vue b/frontend/components/notifications/management/NotificationsManagementNetwork.vue index 6ef36b427..f28612407 100644 --- a/frontend/components/notifications/management/NotificationsManagementNetwork.vue +++ b/frontend/components/notifications/management/NotificationsManagementNetwork.vue @@ -8,7 +8,7 @@ const { chainIdByDefault } = useRuntimeConfig().public const networks = computed(() => notificationsManagementStore.settings.networks ?? []) const currentNetworkId = computed( () => notificationsManagementStore.settings.networks - .find(network => network.chain_id === Number(chainIdByDefault)) ?? 1, + .find(network => network.chain_id === Number(chainIdByDefault))?.chain_id ?? 1, ) const currentNetwork = computed( @@ -54,6 +54,9 @@ watchDebounced([