Commit 9c5cb77
fix(list): avoid lookbehind regex in CTA copy split
The placeholder copy line-break used a lookbehind assertion `(?<=\.)`,
which throws a SyntaxError when the regex literal is parsed on iOS Safari
16.3 and older, crashing the Lists page for those users. Swap it for a
plain `". "` string split that reconstructs the sentence periods, keeping
identical output with no lookbehind.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent 0d1205a commit 9c5cb77
1 file changed
Lines changed: 5 additions & 3 deletions
Lines changed: 5 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
| 25 | + | |
24 | 26 | | |
25 | 27 | | |
26 | | - | |
| 28 | + | |
27 | 29 | | |
28 | 30 | | |
29 | 31 | | |
30 | 32 | | |
31 | 33 | | |
32 | | - | |
33 | | - | |
| 34 | + | |
| 35 | + | |
34 | 36 | | |
35 | 37 | | |
36 | 38 | | |
| |||
0 commit comments