diff --git a/package.json b/package.json
index 957af73a1..f36c604e6 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "session-desktop",
"productName": "Session",
"description": "Private messaging from your desktop",
- "version": "1.12.2",
+ "version": "1.12.3",
"license": "GPL-3.0",
"author": {
"name": "Oxen Labs",
diff --git a/ts/components/leftpane/conversation-list-item/MessageItem.tsx b/ts/components/leftpane/conversation-list-item/MessageItem.tsx
index 874e7a716..95e220fe8 100644
--- a/ts/components/leftpane/conversation-list-item/MessageItem.tsx
+++ b/ts/components/leftpane/conversation-list-item/MessageItem.tsx
@@ -74,13 +74,21 @@ function IconMessageStatus({ status }: { status: LastMessageStatusType }) {
const nonErrorIconColor = 'var(--text-secondary-color';
switch (status) {
case 'error':
- return ;
+ return (
+
+ );
case 'read':
return (
);
case 'sending':
@@ -90,10 +98,18 @@ function IconMessageStatus({ status }: { status: LastMessageStatusType }) {
iconColor={nonErrorIconColor}
iconType="sending"
iconSize="tiny"
+ style={{ flexShrink: 0 }}
/>
);
case 'sent':
- return ;
+ return (
+
+ );
case undefined:
return null;
default: