File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' create-expo-stack ' : patch
3
+ ---
4
+
5
+ fix: remove unnecessary console.log message
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ export async function storeConfigAnalytics({
65
65
66
66
const service = google . sheets ( { version : 'v4' , auth } ) ;
67
67
68
- const result = await service . spreadsheets . values . append ( {
68
+ await service . spreadsheets . values . append ( {
69
69
spreadsheetId : '1Nav_XXi8stJjaBBK8bX0CebRF5QKXU25BZc57I06yGQ' ,
70
70
range : 'Sheet1!A:A' ,
71
71
valueInputOption : 'RAW' ,
@@ -97,8 +97,6 @@ export async function storeConfigAnalytics({
97
97
insertDataOption : 'INSERT_ROWS'
98
98
} ) ;
99
99
100
- console . log ( `${ result . data . updates . updatedCells } cells appended.` ) ;
101
-
102
100
// return result;
103
101
} catch ( err ) {
104
102
console . warn ( 'analytics API returned an error: ' + err ) ;
You can’t perform that action at this time.
0 commit comments