Skip to content

Commit

Permalink
[docs] Change split to 50/50
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Nov 7, 2019
1 parent 42ab37a commit 89a58c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/modules/components/Ad.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function Ad(props) {
}

if (!children) {
if (random >= 0.6) {
if (random >= 0.5) {
children = <AdCodeFund />;
} else if (!carbonOut) {
children = <AdCarbon />;
Expand Down
2 changes: 1 addition & 1 deletion docs/src/modules/components/AdInHouse.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function AdInHouse(props) {
const { ad } = props;
const classes = useStyles();
return (
<span className={classes.root} id="in-house">
<span className={classes.root}>
<a
className={classes.link}
href={ad.link}
Expand Down

0 comments on commit 89a58c4

Please sign in to comment.