diff --git a/src/_includes/partials/widgets/paginator.liquid b/src/_includes/partials/widgets/paginator.liquid
index 5f8c8518..8f132658 100644
--- a/src/_includes/partials/widgets/paginator.liquid
+++ b/src/_includes/partials/widgets/paginator.liquid
@@ -15,7 +15,7 @@
   <select-pagination>
     <select aria-label="Page selection">
       {% for pageEntry in pagination.pages %}
-      <option value="{{ forloop.index | minus: 1 }}">{{ forloop.index }} of {{ pagination.links.size }}</option>
+      <option value="{{ forloop.index }}">{{ forloop.index }} of {{ pagination.links.size }}</option>
       {% endfor %}
     </select>
     <noscript>
@@ -36,4 +36,4 @@
       {% tablericon "arrow-right" "Next" %}
     </span>
   {% endif %}
-</nav>
\ No newline at end of file
+</nav>