Compare commits

...

2 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
aa5eac0d03 fix: skip Binding providers step when content would be empty
Co-authored-by: hsluoyz <3787410+hsluoyz@users.noreply.github.com>
2026-03-06 14:53:31 +00:00
copilot-swe-agent[bot]
b96fd1a832 Initial plan 2026-03-06 14:46:53 +00:00

View File

@@ -843,7 +843,7 @@ export function hasPromptPage(application) {
}
const signupItems = getAllPromptedSignupItems(application);
if (signupItems?.length > 0) {
if (signupItems?.filter(item => item.name === "Country/Region").length > 0) {
return true;
}