Skip to content

Commit 1822808

Browse files
committed
Fix cutoff date for italic formatting to be 2026
1 parent 4056943 commit 1822808

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/user-feeds-next/src/articles/formatter/article-formatter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const FEATURE_CUTOFF_DATES = {
3232
* Before this: <i> and <b> tags were not converted, <em> used block formatting causing newlines.
3333
* After this: All use inline formatting without unwanted newlines.
3434
*/
35-
inlineItalicFormatting: new Date("2025-01-11T01:00:00.000Z"),
35+
inlineItalicFormatting: new Date("2026-01-11T01:00:00.000Z"),
3636
} as const;
3737

3838
type FeatureFlag = keyof typeof FEATURE_CUTOFF_DATES;

0 commit comments

Comments
 (0)