realtime with v2 not working

recently upgraded my project to v2, however i can't get realtime to work
using the example one to listen to everything:
temp0

  .channel('*')

  .on('postgres_changes', { event: '*', schema: '*' }, payload => {

    console.log('Change received!', payload)

  })

  .subscribe()

nothing happens when i edit a row with realtime on and rls select enabled from the supabase ui
one thing i noticed was that it was sending a null access token, any ideas on how to get it to use the auth with realtime?
Was this page helpful?