diff --git a/frontend/index.html b/frontend/index.html
index 072a57e..d1ee10e 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -1,10 +1,10 @@
-
+
- {updates.map((update) => (
-
+ {updates.map((update, index) => (
+
+
+
))}
{updatesLoading && (
@@ -255,16 +263,19 @@ export function LiveBlogViewer({ slug, className }: LiveBlogViewerProps) {
interface LiveBlogUpdateProps {
update: ApiLiveBlogUpdate;
+ alignRight?: boolean;
}
-function LiveBlogUpdate({ update }: LiveBlogUpdateProps) {
+function LiveBlogUpdate({ update, alignRight = false }: LiveBlogUpdateProps) {
const isPinned = update.isPinned;
return (
{isPinned && (