diff --git a/src/pages/catchup.jsx b/src/pages/catchup.jsx
index 34e7571c..9b1d5b62 100644
--- a/src/pages/catchup.jsx
+++ b/src/pages/catchup.jsx
@@ -499,7 +499,6 @@ function Catchup() {
       const isFiltered = filteredPostsMap[post.id];
       return (
         <span
-          data-id={post.id}
           key={post.id}
           class={`post-dot ${isFiltered ? 'post-dot-highlight' : ''}`}
         />
@@ -518,7 +517,6 @@ function Catchup() {
             const isFiltered = filteredPostsMap[post.id];
             return (
               <span
-                data-id={post.id}
                 key={post.id}
                 class={`post-dot ${isFiltered ? 'post-dot-highlight' : ''}`}
               />