Skip to content

Commit

Permalink
Fix lint error in scheduled-firestore-export
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzuya committed May 30, 2023
1 parent 45a3e0c commit 3e2923b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/src/functions/scheduled-firestore-export.ts
Expand Up @@ -29,7 +29,7 @@ export function buildScheduledFirestoreExport(
});

const response = responses[0];
console.log(`Operation Name: ${response["name"]}`);
console.log(`Operation Name: ${response.name ?? "(none)"}`);
} catch (err) {
console.error(err);
throw new Error("Export operation failed");
Expand Down

0 comments on commit 3e2923b

Please sign in to comment.