Skip to content

Commit 7e6a097

Browse files
authored
Merge pull request #6248 from Shopify/08-13-send_correct_uid_in_manifest_during_deploy
Send correct uid in manifest during deploy
2 parents a48171c + c14bc7c commit 7e6a097

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/app/src/cli/models/extensions/extension-instance.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,11 +436,10 @@ export class ExtensionInstance<TConfiguration extends BaseConfigType = BaseConfi
436436
const uuid = this.isUUIDStrategyExtension
437437
? identifiers.extensions[this.localIdentifier]!
438438
: identifiers.extensionsNonUuidManaged[this.localIdentifier]!
439-
const uid = this.isUUIDStrategyExtension ? this.uid : uuid
440439

441440
return {
442441
...result,
443-
uid,
442+
uid: this.uid,
444443
uuid,
445444
specificationIdentifier: developerPlatformClient.toExtensionGraphQLType(this.graphQLType),
446445
}

0 commit comments

Comments
 (0)