diff --git a/src/bggpipe/templates/pages/shelves.html b/src/bggpipe/templates/pages/shelves.html
index 082724e..8ecd073 100644
--- a/src/bggpipe/templates/pages/shelves.html
+++ b/src/bggpipe/templates/pages/shelves.html
@@ -143,10 +143,15 @@ function unitRows(openings) {
function unshelvedRow(g) {
const dims = g.measured ? "" : ` unmeasured`;
- const gos = g.suggestions.map(id => {
- const o = openingById(id);
- return o ? `` : "";
+ const gos = g.suggestions.map(s => {
+ const o = openingById(s.id);
+ if (!o) return "";
+ const why = s.reunites
+ ? "its series-mates live here — fits, with room"
+ : "fits, with room to spare";
+ return ``;
}).join("");
const gosOut = gos
|| (g.measured ? `no matching openings yet` : "");