Skip to content

Commit

Permalink
remove optional chaining operator from auto_drive.upload
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrank-summit committed Jan 16, 2025
1 parent 52a4f39 commit f408328
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const config = (() => {
autoDriveConfig: {
AUTO_DRIVE_API_KEY: process.env.AUTO_DRIVE_API_KEY,
AUTO_DRIVE_ENCRYPTION_PASSWORD: process.env.AUTO_DRIVE_ENCRYPTION_PASSWORD,
AUTO_DRIVE_UPLOAD: yamlConfig.auto_drive?.upload ?? false,
AUTO_DRIVE_UPLOAD: yamlConfig.auto_drive.upload ?? false,
},
blockchainConfig: {
RPC_URL: process.env.RPC_URL || undefined,
Expand Down

0 comments on commit f408328

Please sign in to comment.