Skip to content

Commit

Permalink
Update TileCard.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurEmma2 authored Jul 21, 2023
1 parent 6b577d9 commit 58f880a
Showing 1 changed file with 0 additions and 49 deletions.
49 changes: 0 additions & 49 deletions web/src/components/TileCard/TileCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,55 +213,6 @@ function TileCard(props: Props) {
</div>
</div>
</div>

{/* <div className="tile_card">
<div style={{ margin: '20px' }}>
<div className="flex tile_wrapper">
<img src={image} alt={title} />
<p className="tile-card_title">{title}</p>
</div>
<p className="tile-card_desc">{description}</p>
{activeStep.currentCard === steps.length
? null
: !progressVisible && (
<React.Fragment>
{activeStep.currentCard === 0 && buttonText === 'Import SDL' && (
<button
className="tile_btn"
onClick={() => {
setFieldValue('sdl', {});
handleImportSDL();
setReviewSdl(true);
}}
>
{buttonText}
</button>
)}
{activeStep.currentCard === 0 && buttonText === 'Choose a Template' && (
<Button
variant="outlined"
size="large"
sx={{ width: 260, padding: 1, marginRight: 20, mx: 2 }}
>
Sized Button
</Button>
)}
{activeStep.currentCard === 0 && buttonText === 'Coming Soon' && (
<button style={{ cursor: 'default' }} className="tile_btn">
{buttonText}
</button>
)}
<SdlEditor
reviewSdl={reviewSdl}
closeReviewModal={closeReviewModal}
onSave={handleSdlEditorSave}
/>
</React.Fragment>
)}
</div>
</div> */}
</div>
</>
)}
Expand Down

0 comments on commit 58f880a

Please sign in to comment.