Skip to content

Commit

Permalink
cors testing
Browse files Browse the repository at this point in the history
  • Loading branch information
tcheee committed Jul 12, 2024
1 parent c75ea33 commit 3bb3b83
Showing 1 changed file with 22 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,27 +83,28 @@ export const SignatureCTA = ({ signature }: SignatureCtaProps) => {

return (
<>
{signature?.isLive ? (
<SeveralMissionCtaContainer onClick={handleSignatureClick}>
<CTAExplanationBox>
<Image
src={
'https://pbs.twimg.com/profile_images/1769392206371028992/HPxURAyE_400x400.jpg'
}
alt={`logo image`}
width={48}
height={48}
priority={false}
/>
<SoraTypography
fontSize={{ xs: '16px', sm: '22px' }}
fontWeight={700}
marginLeft={'16px'}
>
{signature.message ?? 'Sign Message'}
</SoraTypography>
</CTAExplanationBox>
</SeveralMissionCtaContainer>
{true ? (
<Box sx={{ width: '100%', marginBottom: '16px' }}>
<SeveralMissionCtaContainer onClick={handleSignatureClick}>
<CTAExplanationBox>
<Image
src={'https://strapi.li.finance/uploads/turtle_ef319715fe.jpg'}
alt={`logo image`}
width={48}
height={48}
style={{ borderRadius: 100 }}
priority={false}
/>
<SoraTypography
fontSize={{ xs: '16px', sm: '22px' }}
fontWeight={700}
marginLeft={'16px'}
>
{signature?.message ?? 'Sign Message'}
</SoraTypography>
</CTAExplanationBox>
</SeveralMissionCtaContainer>
</Box>
) : undefined}
</>
);
Expand Down

0 comments on commit 3bb3b83

Please sign in to comment.