Skip to content

Commit

Permalink
remove unused properties from google sheet
Browse files Browse the repository at this point in the history
  • Loading branch information
cathei committed Jun 18, 2024
1 parent 96a7dff commit 5db159e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BakingSheet.Converters.Google/GoogleSheetConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected override async Task<bool> LoadData()
}))
{
var sheetReq = service.Spreadsheets.Get(_gsheetAddress);
sheetReq.Fields = "properties,sheets(properties,data.rowData.values.formattedValue)";
sheetReq.Fields = "sheets(properties.title,data.rowData.values.formattedValue)";
_spreadsheet = await sheetReq.ExecuteAsync();
}

Expand Down

0 comments on commit 5db159e

Please sign in to comment.