File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
packages/ui/src/components Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -190,10 +190,11 @@ export default function Modal(props: ModalProps) {
190190 modalState . modalVisibilityDelayed && (
191191 < div id = "w3a-modal" className = "w3a-modal" >
192192 < div
193- className = { `${ modalTransitionClasses . join ( " " ) } ${ modalState . status !== MODAL_STATUS . INITIALIZED ? "w3a--p-6 w3a--pt-7" : "" } ${ ( areSocialLoginsVisible || isEmailPasswordlessLoginVisible || isSmsPasswordlessLoginVisible ) && ! modalState . externalWalletsVisibility
193+ className = { `${ modalTransitionClasses . join ( " " ) } ${ modalState . status !== MODAL_STATUS . INITIALIZED ? "w3a--p-6 w3a--pt-7" : "" } ${
194+ ( areSocialLoginsVisible || isEmailPasswordlessLoginVisible || isSmsPasswordlessLoginVisible ) && ! modalState . externalWalletsVisibility
194195 ? ""
195196 : "wallet-adapter-container"
196- } `}
197+ } `}
197198 >
198199 { modalState . status !== MODAL_STATUS . INITIALIZED ? (
199200 < >
@@ -216,7 +217,7 @@ export default function Modal(props: ModalProps) {
216217 ) : (
217218 < div className = { `transition-wrapper ${ transition } ` } >
218219 { ( areSocialLoginsVisible || isEmailPasswordlessLoginVisible || isSmsPasswordlessLoginVisible ) &&
219- ! modalState . externalWalletsVisibility ? (
220+ ! modalState . externalWalletsVisibility ? (
220221 < >
221222 < Header onClose = { closeModal } appLogo = { appLogo } appName = { appName } />
222223 < div className = "w3a-modal__content w3ajs-content" >
You can’t perform that action at this time.
0 commit comments