Skip to content

Commit

Permalink
feat(appx): remove null detect
Browse files Browse the repository at this point in the history
  • Loading branch information
ifurther committed Jun 6, 2024
1 parent e313c25 commit 14fd42c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app-builder-lib/src/targets/AppxTarget.ts
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export default class AppXTarget extends Target {
result = options.identityName.replace(identitynumber.toString(), "")
}
} else {
result = options.applicationId || (options.identityName !== null && options.identityName !== undefined) || appInfo.name
result = options.applicationId || options.identityName || appInfo.name
}

if (result.length < 1 || result.length > 64) {
Expand Down

0 comments on commit 14fd42c

Please sign in to comment.