Fully Kiosk auto login

I have a Sonoff NSPanel which is used to display various information from HA. I’m using Fully Kiosk which starts on boot. However for some reason it forgets the user at every boot and entering it on this little screen is annoying.

So I tried to set up trusted user

homeassistant:
  auth_providers:
    - type: homeassistant
    - type: trusted_networks
      trusted_networks:
        - 192.168.1.55
      trusted_users:
        192.168.1.55: 85acb8e123d840ab456c193bd18a158e

but now when it boots up, I just get this:
fully-screenshot

I changed configuration to

homeassistant:
  auth_providers:
    - type: homeassistant
    - type: trusted_networks
      trusted_networks:
        - 192.168.1.0/24
      trusted_users:
        192.168.1.55: 85acb8e123d840ab456c193bd18a158e

and now it works :thinking: