launch: stop passing 'invite' prop to tile

This commit is contained in:
Matilde Park 2020-03-13 10:21:00 -04:00
parent b94d81c190
commit bca75a7b80

View File

@ -22,8 +22,8 @@ export default class Home extends Component {
tileData = this.props.data[tile] !== null
? this.props.data[tile] : {};
tileData["invites"] = ("invites" in this.props.data)
? this.props.data["invites"] : {};
// tileData["invites"] = ("invites" in this.props.data)
// ? this.props.data["invites"] : {};
}
return <Tile key={tile} type={tile} data={tileData} />;
});