diff --git a/components/ExperimentsView.tsx b/components/ExperimentsView.tsx
index a9a623c..0dd0764 100644
--- a/components/ExperimentsView.tsx
+++ b/components/ExperimentsView.tsx
@@ -710,51 +710,7 @@ const ExperimentDetailView: React.FC<{
- {/* Bottom Info Grid */}
-
-
-
-
Test Timeline
-
12 Weeks
-
-
Active Test Period
-
Jan 01 - Mar 25, 2026
-
Weeks 1-12 (2026)
-
-
-
-
Comparison Baseline
-
Oct 01 - Dec 24, 2025
-
Weeks 40-51 (2025)
-
-
-
-
-
-
-
- Statistical Insight
-
-
- Results are normalized against the Pre-test Baseline to account for category seasonality.
-
-
-
-
-
- T
-
-
Content Strategy
-
- Focus on high-velocity benefit descriptors in Treatment B.
-
-
-
);
};
@@ -791,8 +747,12 @@ const ExperimentFormView: React.FC<{
const parseAsins = (raw: string): string[] => {
return raw
- .split(/[\s,;\n]+/)
- .map(s => s.trim().toUpperCase())
+ .split(/[,;\n]+/)
+ .flatMap(chunk => {
+ const trimmed = chunk.trim().toUpperCase();
+ if (trimmed.startsWith('LINE:')) return [trimmed];
+ return trimmed.split(/\s+/);
+ })
.filter(s => s.length >= 5);
};