Authorization: basic <username>:<password>). Authorization header with the access token and vango-refresh-token custom header with the refresh token. And then depending on the server's response I may need to update the state, for example if both tokens are expired then the server returns 401 Unauthorized and I need to clear the state session. Or if the access token is expired but the refresh token is valid, then the server returns new tokens and I need to update them in the state.fetch that will handle this logic in every request. I tried a couple of patterns which didn't work due to not having access to the app state context outside components (I'm new to solid and frontend dev in general so reactivity is mostly a new concept to me).ApiContext which is initialized with the getter and setter for the app state store, and it provides the fetch wrapper to its users (alongside other helper functions).querys and actions. Will this api context cause issues with that?