### Build/Submit details page URL
_No response_
### Summary
I'm getting "Maintenance - Apple Developer", but it's not in maintenance. I think this page is cached in eas.
```
✔ Logged in New session
Authentication with Apple Developer Portal failed!
Cannot extract key "teams" from response data of type string:
Maintenance - Apple Developer
// Execute immediately to avoid UI flash
(function () {
const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
const body = document.body;
// If theme-dark or theme-light is already applied, do nothing and lock it
if (body.classList.contains("theme-dark") || body.classList.contains("theme-light")) {
// Set the data-color-scheme attribute based on the existing theme
body.setAttribute('data-color-scheme', body.classList.contains("theme-dark") ? "dark" : "light");
// Prevent future modifications
window.__disableColorScheme = true;
// Hide the color picker immediately
const style = document.createElement('style');
style.textContent = '.color-scheme-toggle { display: none !important; }';
document.head.appendChild(style);
return;
}
// Otherwise, set theme normally based on user settings or system preference
if (window.Settings && window.Settings.preferredColorScheme) {
const colorTheme = (window.Settings.preferredColorScheme === 'auto') && !prefersDark ? 'light'
: (window.Settings.preferredColorScheme === 'light') ? 'light' : 'dark';
body.setAttribute('data-color-scheme', colorTheme);
colorTheme === "dark" ? body.classList.add("theme-dark") : body.classList.add("theme-light");
} else {
const colorTheme = prefersDark ? 'dark' : 'light';
body.setAttribute('data-color-scheme', colorTheme);
prefersDark ? body.classList.add("theme-dark") : body.classList.add("theme-light");
}
})();
/* RSID: */
var s_account="awdappledeveloper"
s.pageName= AC && AC.Tracking && AC.Tracking.pageName();
s.channel="www.en.developer"
s.channel="www.en.developer";
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)
For details and updates, see the developer system status page.
Error: build command failed.
```
### Managed or bare?
managed
### Environment
production
### Error output
_No response_
### Reproducible demo or steps to reproduce from a blank project
$ eas build -p ios --profile production
This issue has not been assessed yet.
A short digest of beginner-friendly GitHub issues.