Запитання 15
A teammate suggests storing both the access token and refresh token together in a single `expo-secure-store` entry as a JSON string to simplify the code. What's the main concern with this approach?
Варіанти відповідей
SecureStore cannot store strings longer than a JWT
It removes the distinction in exposure surface between the two tokens; reading or backing up that one entry exposes the refresh token even in code paths that only needed the access token
JSON.stringify is not available in the Hermes engine
SecureStore entries cannot be updated once written