There is an error in the documentation

At
https://docs.activitywatch.net/en/latest/remote-server.html
there is a aw-server.toml snippet:
„ [server]
address = “0.0.0.0” # or the IP address of your network interface of choice
cors_origins = “*” # or a list of allowed origins, e.g. “http://:5600”
# leave other settings as-is“

which is obviously wrong, as the „address“ token does nothing. It should be:

„ [server]
host = “0.0.0.0” # or the IP address of your network interface of choice
cors_origins = “*” # or a list of allowed origins, e.g. “http://:5600”
# leave other settings as-is“

You owe me 30 minutes of my life.