Helm/kubernetes/github failing to login

I have the following helm values for a kubernetes cluster in AWS

ingress:
  enabled: true
  hosts:
    - drone.domain.com
  annotations:
    kubernetes.io/ingress.class: nginx

server:
  host: http://drone.domain.com
  env:
    DRONE_ADMIN: myGithubUser
    DRONE_PROVIDER: "github"
    DRONE_OPEN: "true"
    DRONE_GITHUB: "true"
    DRONE_ORGS: orgName
    DRONE_GITHUB_CLIENT: fe5xxxxxxx
    DRONE_GITHUB_SECRET: 3f69xxxxxx

I get it to authorize and orgName has a green check and there are no restrictions on the org in question either. After I authorize I get the following in the server logs

time="2019-05-01T14:24:40Z" level=error msg="cannot verify team membership for ."

Based on your configuration parameters it looks like you are using an old version of Drone. The latest stable version is 1.1.0 and should be used for all new installations.

Ok turns out the helm chart was cached to 0.8.7 which caused most of my issues. Now I’m getting a blank page like

drone.domain.com/authorize?code=d1c57e3f7c81cf785546&state=4d65822107fcfd52

If I view the source I can see things but the js isn’t loading.

the redirect url should be /login instead of /authorize