Skip to content

Commit

Permalink
fix: missing paren (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinay-google authored Jan 24, 2023
1 parent ec1bbf5 commit ed2885b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drive/quickstart/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
}
// Flatten to string to display
const output = files.reduce(
(str, file) => `${str}${file.name} (${file.id}\n`,
(str, file) => `${str}${file.name} (${file.id})\n`,
'Files:\n');
document.getElementById('content').innerText = output;
}
Expand Down

0 comments on commit ed2885b

Please sign in to comment.