Skip to content

Commit 2aea45b

Browse files
committed
fix: return seconds for elapsedSeconds instead of ms
1 parent bba1c5e commit 2aea45b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/collections/data/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ const data = <T>(
306306
}
307307
});
308308
return {
309-
elapsedSeconds: end - start,
309+
elapsedSeconds: (end - start) / 1000,
310310
errors: errors,
311311
hasErrors: Object.keys(errors).length > 0,
312312
};

0 commit comments

Comments
 (0)