Skip to content
This repository has been archived by the owner on May 29, 2023. It is now read-only.

Commit

Permalink
chore: update exportApisToSheets to populate all_apis sheet (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Apr 7, 2022
1 parent ffe7ada commit 5c0b86c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fetchServices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export async function exportApisToSheets() {
// clear the current text in the sheet
await sheets.spreadsheets.values.clear({
spreadsheetId,
range: 'A1:Z10000',
range: 'all_apis!A1:Z10000',
});

// insert it into the sheet
Expand All @@ -178,7 +178,7 @@ export async function exportApisToSheets() {
valueInputOption: 'USER_ENTERED',
data: [
{
range: 'A1',
range: 'all_apis!A1',
values,
},
],
Expand Down

0 comments on commit 5c0b86c

Please sign in to comment.