Skip to content

Commit

Permalink
Merge branch 'ubq-development' into ubq-main
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Jan 27, 2025
2 parents 7dd75b3 + 1313255 commit de52be2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function getPluginOptions(options: Options | undefined) {
return {
// Important to use || and not ?? to not consider empty strings
kernelPublicKey: options?.kernelPublicKey || KERNEL_PUBLIC_KEY,
logLevel: options?.logLevel ?? LOG_LEVEL.INFO,
logLevel: options?.logLevel || LOG_LEVEL.INFO,
postCommentOnError: options?.postCommentOnError ?? true,
settingsSchema: options?.settingsSchema,
envSchema: options?.envSchema,
Expand Down

0 comments on commit de52be2

Please sign in to comment.