Skip to content

Commit

Permalink
fix: initial fix (binary-com#9342)
Browse files Browse the repository at this point in the history
  • Loading branch information
shontzu-deriv committed Jul 13, 2023
1 parent 119dcf3 commit 97fa8ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/Stores/client-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ export default class ClientStore extends BaseStore {
// as Swapfree only have SVG account for now we need to check if there is any real svg account available
return existing_real_accounts.some(account => account.landing_company_short === shortcode);
}
return existing_real_accounts.some(account => account.landing_company_short !== shortcode);
return existing_real_accounts.some(account => account.landing_company_short === shortcode);
});

return !has_no_matching_accounts;
Expand Down

0 comments on commit 97fa8ca

Please sign in to comment.