Something went wrong{this.props.workspaceInfo && ` in ${this.props.workspaceInfo}`}
{this.state.error && (
-
+
{this.state.error.toString()}
{this.state.errorInfo && (
<>
@@ -59,7 +59,7 @@ export class ErrorBoundary extends Component {
)}
diff --git a/src/components/ErrorMessage.tsx b/src/components/ErrorMessage.tsx
index 828fad2168..a3474d5707 100644
--- a/src/components/ErrorMessage.tsx
+++ b/src/components/ErrorMessage.tsx
@@ -8,9 +8,9 @@ interface ErrorMessageProps {
export const ErrorMessage: React.FC = ({ title, message, details }) => {
return (
-
+
{title && (
-
+
⚠️
{title}
diff --git a/src/components/GitStatusIndicatorView.tsx b/src/components/GitStatusIndicatorView.tsx
index 179388b0ae..6381290171 100644
--- a/src/components/GitStatusIndicatorView.tsx
+++ b/src/components/GitStatusIndicatorView.tsx
@@ -62,7 +62,7 @@ export const GitStatusIndicatorView: React.FC
= ({
if (!gitStatus) {
return (
);
@@ -72,7 +72,7 @@ export const GitStatusIndicatorView: React.FC = ({
if (gitStatus.ahead === 0 && gitStatus.behind === 0 && !gitStatus.dirty) {
return (
);
@@ -81,7 +81,7 @@ export const GitStatusIndicatorView: React.FC = ({
// Render colored indicator characters
const renderIndicators = (indicators: string) => {
return (
-
+
{Array.from(indicators).map((char, index) => (
{char}
@@ -98,10 +98,10 @@ export const GitStatusIndicatorView: React.FC = ({
}
return (
-
+
{branchHeaders.map((header, index) => (
-
+
{/* Create spacing to align with column */}
{Array.from({ length: header.columnIndex }).map((_, i) => (
@@ -128,8 +128,8 @@ export const GitStatusIndicatorView: React.FC = ({
const isTruncated = dirtyFiles.length > LIMIT;
return (
-
-
Uncommitted changes:
+
+
Uncommitted changes:
{displayFiles.map((line, index) => (
= ({
))}
{isTruncated && (
-
+
(showing {LIMIT} of {dirtyFiles.length} files)
)}
@@ -172,8 +172,8 @@ export const GitStatusIndicatorView: React.FC
= ({
{renderIndicators(commit.indicators)}
- {commit.hash}
- {commit.date}
+ {commit.hash}
+ {commit.date}
{commit.subject}
@@ -208,7 +208,7 @@ export const GitStatusIndicatorView: React.FC = ({
ref={onContainerRef}
onMouseEnter={onMouseEnter}
onMouseLeave={onMouseLeave}
- className="text-accent text-[11px] flex items-center gap-1 mr-1.5 font-mono relative"
+ className="text-accent relative mr-1.5 flex items-center gap-1 font-mono text-[11px]"
>
{gitStatus.ahead > 0 && (
↑{gitStatus.ahead}
@@ -217,7 +217,7 @@ export const GitStatusIndicatorView: React.FC = ({
↓{gitStatus.behind}
)}
{gitStatus.dirty && (
- *
+ *
)}
diff --git a/src/components/ImageAttachments.tsx b/src/components/ImageAttachments.tsx
index 8f4dff0cdb..2f2c75ab7e 100644
--- a/src/components/ImageAttachments.tsx
+++ b/src/components/ImageAttachments.tsx
@@ -19,13 +19,13 @@ export const ImageAttachments: React.FC = ({ images, onRe
{images.map((image) => (
-

+
diff --git a/src/components/KebabMenu.tsx b/src/components/KebabMenu.tsx
index 9a9d9ec546..8084418638 100644
--- a/src/components/KebabMenu.tsx
+++ b/src/components/KebabMenu.tsx
@@ -98,7 +98,7 @@ export const KebabMenu: React.FC
= ({ items, className }) => {
createPortal(
= ({ items, className }) => {
)}
>
{item.emoji && (
-
{item.emoji}
+
{item.emoji}
)}
{item.label}
diff --git a/src/components/Messages/AssistantMessage.tsx b/src/components/Messages/AssistantMessage.tsx
index c8d19e96f7..864fe89ae1 100644
--- a/src/components/Messages/AssistantMessage.tsx
+++ b/src/components/Messages/AssistantMessage.tsx
@@ -90,7 +90,7 @@ export const AssistantMessage: React.FC
= ({
// Empty streaming state
if (isStreaming && !content) {
return (
-
+
Waiting for response...
);
@@ -111,7 +111,7 @@ export const AssistantMessage: React.FC
= ({
// Completed text renders as static content
return content ? (
showRaw ? (
-
+
{content}
) : (
@@ -129,7 +129,7 @@ export const AssistantMessage: React.FC = ({
{modelName &&
}
{isCompacted && (
-
+
{COMPACTED_EMOJI} compacted
)}
diff --git a/src/components/Messages/ChatBarrier/BaseBarrier.tsx b/src/components/Messages/ChatBarrier/BaseBarrier.tsx
index bce2371aab..efa05f7aa2 100644
--- a/src/components/Messages/ChatBarrier/BaseBarrier.tsx
+++ b/src/components/Messages/ChatBarrier/BaseBarrier.tsx
@@ -23,19 +23,19 @@ export const BaseBarrier: React.FC = ({
)}
>
{text}
= ({
className
)}
>
-
+
🔄
-
+
{countdown === 0 ? (
<>Retrying... (attempt {attempt + 1})>
) : (
<>
Retrying in{" "}
- {countdown}s (attempt{" "}
+ {countdown}s (attempt{" "}
{attempt + 1})
>
)}