Skip to content

Commit ed2885b

Browse files
authored
fix: missing paren (#155)
1 parent ec1bbf5 commit ed2885b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drive/quickstart/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
}
154154
// Flatten to string to display
155155
const output = files.reduce(
156-
(str, file) => `${str}${file.name} (${file.id}\n`,
156+
(str, file) => `${str}${file.name} (${file.id})\n`,
157157
'Files:\n');
158158
document.getElementById('content').innerText = output;
159159
}

0 commit comments

Comments
 (0)