File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,6 @@ const guides = [
5555 }
5656 } ,
5757 style : 'Info' ,
58- didYouKnow : true ,
5958 image : trashBottleImage ,
6059 imageStyle : imageStyleOverrides . bottle
6160 } ,
@@ -80,7 +79,6 @@ const guides = [
8079 return state . yesCount + state . noCount >= 15 ;
8180 }
8281 } ,
83- didYouKnow : true ,
8482 style : 'Info' ,
8583 image : trashCanImage ,
8684 imageStyle : imageStyleOverrides . can
@@ -228,7 +226,6 @@ const guides = [
228226 return state . yesCount + state . noCount >= 5 ;
229227 }
230228 } ,
231- didYouKnow : true ,
232229 style : 'Info' ,
233230 image : seahorseImage ,
234231 imageStyle : imageStyleOverrides . seahorse
@@ -254,7 +251,6 @@ const guides = [
254251 return state . yesCount + state . noCount >= 15 ;
255252 }
256253 } ,
257- didYouKnow : true ,
258254 style : 'Info' ,
259255 image : turtleImage ,
260256 imageStyle : imageStyleOverrides . turtle
Original file line number Diff line number Diff line change @@ -1531,7 +1531,7 @@ let Guide = class Guide extends React.Component {
15311531 } }
15321532 >
15331533 < div >
1534- { currentGuide . didYouKnow && (
1534+ { currentGuide . style === 'Info' && (
15351535 < div style = { styles . guideHeading } >
15361536 { I18n . t ( 'didYouKnow' ) }
15371537 </ div >
You can’t perform that action at this time.
0 commit comments