(I accidentally updated it so that false and true were flipped)

I've fixed that now
diff --git a/Components/TileRow.js b/Components/TileRow.js
index 85bf830..ed0bf0b 100644
--- a/Components/TileRow.js
+++ b/Components/TileRow.js
@@ -10,7 +10,7 @@
 		<div className={Styles.container}>
 		{
 		    react.Children.toArray(this.props.children).map((item, index) => {
-			if (this.props.divless === false) { // Intentional comparison to false, initially had a default of false, now has a default of true
+			if (this.props.divless !== false) { // Intentional comparison to false, initially had a default of false, now has a default of true
 			    const className = (item.props.className ? item.props.className + " " : "") + Styles.item
 
 			    const key = index;