build: use publish_data in test-app for QA

This commit is contained in:
Hank Stoever
2020-07-23 22:52:42 -07:00
parent 61e9aad50e
commit 503937c42e
3 changed files with 3 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ export const ChooseAccount: React.FC<ChooseAccountProps> = ({ next }) => {
const app = apps[origin];
if (origin !== url.origin && app.scopes.includes('publish_data')) {
newReusedApps.push(app);
} else if (origin === url.origin) {
} else if (origin === url.origin && app.scopes.includes('publish_data')) {
hasLoggedInWithThisID = true;
}
});