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.js CHANGED
@@ -1142,7 +1142,7 @@ var formatTimeSpent = (seconds) => {
1142
1142
  };
1143
1143
  var formatQuestionNumbers = (numbers) => {
1144
1144
  if (numbers.length === 0) return "-";
1145
- return numbers.map((n) => String(n + 1).padStart(2, "0")).join(", ");
1145
+ return numbers.map((n) => String(n).padStart(2, "0")).join(", ");
1146
1146
  };
1147
1147
  var formatDateToBrazilian = (dateString) => {
1148
1148
  const date = new Date(dateString);