aboutsummaryrefslogtreecommitdiff
path: root/examples/macros/fetchCSV.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'examples/macros/fetchCSV.tsx')
-rw-r--r--examples/macros/fetchCSV.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/macros/fetchCSV.tsx b/examples/macros/fetchCSV.tsx
index b06b1e03e..55a12bc42 100644
--- a/examples/macros/fetchCSV.tsx
+++ b/examples/macros/fetchCSV.tsx
@@ -36,12 +36,12 @@ export async function fetchCSV(callExpression) {
rows = rows
.slice(Math.max(limit, rows.length) - limit)
.reverse()
- .filter((columns) => columns.every(Boolean));
+ .filter(columns => columns.every(Boolean));
const value = (
<array>
- {rows.map((columns) => (
+ {rows.map(columns => (
<array>
- {columnIndices.map((columnIndex) => (
+ {columnIndices.map(columnIndex => (
<string value={columns[columnIndex]} />
))}
</array>