From a13cfdf322e6eb9a3b16e3ef655fd2cb21818250 Mon Sep 17 00:00:00 2001 From: Piotr Monwid-Olechnowicz Date: Thu, 21 Aug 2025 17:17:57 +0200 Subject: [PATCH] Stop aligning text in What to Expect on the conf page --- src/app/conf/2025/components/what-to-expect.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/conf/2025/components/what-to-expect.tsx b/src/app/conf/2025/components/what-to-expect.tsx index 0bfd71a116..4134bb0f2c 100644 --- a/src/app/conf/2025/components/what-to-expect.tsx +++ b/src/app/conf/2025/components/what-to-expect.tsx @@ -28,10 +28,10 @@ export default function WhatToExpectSection({ function ListItem({ number, text }: { number: string | number; text: string }) { return (
  • - + {number} {" "} - {text} + {text}
  • ) }