|
|
|
@ -13,7 +13,7 @@ export const Join = ({ isMobile, join, userId }) => { |
|
|
|
|
userId ? join({ userId, email }) : join({ email }); |
|
|
|
|
}; |
|
|
|
|
return ( |
|
|
|
|
<div className="w-full lg:h-72 border-2 px-3 lg:p-0 py-4 border-solid border-gray-200 dark:border-opacity-30 rounded-md flex lg:flex-col-reverse mt-7 lg:mt-32"> |
|
|
|
|
<div className="w-full lg:h-72 border-2 px-3 lg:p-0 py-4 border-solid border-gray-200 dark:border-opacity-30 rounded-md flex lg:flex-row flex-col-reverse mt-7 lg:mt-32"> |
|
|
|
|
<img |
|
|
|
|
src={picImage} |
|
|
|
|
alt="" |
|
|
|
@ -97,7 +97,7 @@ export const Join = ({ isMobile, join, userId }) => { |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const mapStateToProps = (state) => ({ |
|
|
|
|
isMobile: state.publicApi.isMobile, |
|
|
|
|
isMobile: state.config.device === 'mobile', |
|
|
|
|
userId: state.user.status?.id, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|