From f00b1e25d6a0625b97c9bac6ce795ed124e356f0 Mon Sep 17 00:00:00 2001 From: Mike Williams Date: Wed, 13 May 2026 17:41:15 -0400 Subject: [PATCH] fix: use experiment app_id if available --- jetstream/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jetstream/cli.py b/jetstream/cli.py index 7afecff6..462c0756 100644 --- a/jetstream/cli.py +++ b/jetstream/cli.py @@ -1627,7 +1627,7 @@ def preview( reference_branch=experiment.reference_branch if experiment else "control", is_high_population=False, app_name=platform, - app_id=PLATFORM_CONFIGS[platform].app_id, + app_id=experiment.app_id if experiment else PLATFORM_CONFIGS[platform].app_id, outcomes=experiment.outcomes if experiment else [], segments=experiment.segments if experiment else [], enrollment_end_date=None,