New devices not visible

Get the notification:
New devices discovered

We have discovered new devices on your network. Check it out

When I click on check it out, the page is blank.

I set up an automation (copied from here) to forward all of the persistent notifications to ios and I’m getting a bunch of these too. In the Notifications section, there is nothing there, and even when I go to config/integrations, everything there is already set up.

Here is the automation:


- alias: forward_persistent_notifications
  initial_state: 'on'
  trigger:
    - platform: event
      event_type: call_service
      event_data:
        domain: persistent_notification
        service: create
  action:
    - service: notify.ios_brads_iphone
      data_template:
        message: >-
          {% set message = trigger.event.data.service_data.message %}
          {% if 'invalid authentication' in message or 'login attempts' in message %}
            {{ message }}: http://www.ip-tracker.org/locator/ip-lookup.php?ip={{ message.split('from ')[1] }}
          {% else %}
            {{ message }}
          {% endif %}

Not sure what is causing it but it sure is annoying. Any thoughts?