TestFlight not accessing secure store

Today when I was testing out our app on TestFlight for mac, it got hung up at the load user profile step. After thinking it was a recent change that caused the issue, I opened prior build that had worked and they are stuck at the same point too. I think this is the function that's no longer returning the token.

export const loadTokenFromDeviceStorage = createAsyncThunk(
  "user/token/get/device",
  async (_, thunkApi) =>
    secureStore
      .getAsync("token")
      .then((token) => {
        if (token) {
          apiClient.apiSessionToken = token;
          return token;
        }
      })
      .catch((error) => thunkApi.rejectWithValue(error.response.data.detail))
);

Is this a known error for the mac version? Is there a recent change to how TestFlight works that would cause this issue?

thanks!

TestFlight not accessing secure store
 
 
Q