File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
packages/app/src/app/pages/Profile/Showcase Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -13,12 +13,13 @@ import {
1313 PlayButtonContainer ,
1414} from './elements' ;
1515
16- function SandboxInfo ( { sandbox } ) {
16+ function SandboxInfo ( { sandbox, isLoggedIn } ) {
1717 return (
1818 < Container >
1919 < Row alignItems = "center" >
2020 < Title >
21- { getSandboxName ( sandbox ) } < Like sandbox = { sandbox } />
21+ { getSandboxName ( sandbox ) } { ' ' }
22+ { isLoggedIn ? < Like sandbox = { sandbox } /> : null }
2223 </ Title >
2324 </ Row >
2425 < Row alignItems = "flex-start" >
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ class Showcase extends React.Component {
6262 />
6363 </ div >
6464 < div style = { { flex : 1 } } >
65- < SandboxInfo sandbox = { sandbox } />
65+ < SandboxInfo sandbox = { sandbox } isLoggedIn = { store . isLoggedIn } />
6666 </ div >
6767 </ Column >
6868 </ Margin >
You can’t perform that action at this time.
0 commit comments