analytica-frontend-lib 1.3.21 → 1.3.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -724,7 +724,7 @@ var formatTimeSpent = (seconds) => {
724
724
  };
725
725
  var formatQuestionNumbers = (numbers) => {
726
726
  if (numbers.length === 0) return "-";
727
- return numbers.map((n) => String(n + 1).padStart(2, "0")).join(", ");
727
+ return numbers.map((n) => String(n).padStart(2, "0")).join(", ");
728
728
  };
729
729
  var formatDateToBrazilian = (dateString) => {
730
730
  const date = new Date(dateString);