We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a49891 commit e78853aCopy full SHA for e78853a
1 file changed
slides/quickstart/index.js
@@ -93,7 +93,7 @@ function listSlides(auth) {
93
if (err) return console.log('The API returned an error: ' + err);
94
const length = res.data.slides.length;
95
console.log('The presentation contains %s slides:', length);
96
- data.slides.map((slide, i) => {
+ res.data.slides.map((slide, i) => {
97
console.log(`- Slide #${i + 1} contains ${slide.pageElements.length} elements.`);
98
});
99
0 commit comments