diff --git a/work.html b/work.html
index 1670c5b5..23ed9b41 100644
--- a/work.html
+++ b/work.html
@@ -75,11 +75,10 @@
const contentDiv = containerEl.previousElementSibling;
const excerpt = contentDiv.dataset.excerpt;
const content = contentDiv.dataset.content;
- const caseStudyLink = contentDiv.dataset.caseStudy;
let toggled = contentDiv.dataset.toggled === "true";
if (!toggled) {
- contentDiv.innerHTML = content + caseStudyLink;
+ contentDiv.innerHTML = content;
toggleEl.innerHTML = "[read less]";
contentDiv.dataset.toggled = "true";
toggleEl.setAttribute("aria-expanded", "true");