In script-setup, I have this...
```
const user = useUserData()
const userRoles = useUserRoles()
```
When I display these values, `user` (eventually) has data, but `userRoles` displays '[]'. I would expect it to get updated with the roles, like `user` does.