Skip to content

Commit

Permalink
feat(sb): prefer sb order banner
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip London committed Jun 12, 2020
1 parent 24772fa commit 7d73b05
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -32,10 +32,10 @@ export const getData = (state): { bannerToShow: BannerType } => {
let bannerToShow
if (showDocResubmitBanner) {
bannerToShow = 'resubmit'
} else if (isKycStateNone && isUserActive && !isFirstLogin) {
bannerToShow = 'finishKyc'
} else if (isSimpleBuyOrderPending) {
bannerToShow = 'sbOrder'
} else if (isKycStateNone && isUserActive && !isFirstLogin) {
bannerToShow = 'finishKyc'
} else {
bannerToShow = null
}
Expand Down

0 comments on commit 7d73b05

Please sign in to comment.