diff --git a/scripts/orb-registration/orb-registration.py b/scripts/orb-registration/orb-registration.py index 0e739cf7..e0713e39 100644 --- a/scripts/orb-registration/orb-registration.py +++ b/scripts/orb-registration/orb-registration.py @@ -97,7 +97,10 @@ def __init__(self, args): self.channel = "dev_diamond_channel" elif args.backend == "prod": self.domain = "https://management.internal.orb.worldcoin.dev" - self.channel = args.channel + if args.platform == "diamond" and args.channel == "general": + self.channel = "diamond-tier-ga" + else: + self.channel = args.channel else: raise ValueError(f"Invalid backend: {args.backend}")