From f775c00a3bce250464f72d3601ee2a8a2f758ed0 Mon Sep 17 00:00:00 2001 From: senke Date: Sat, 7 Feb 2026 14:00:55 +0100 Subject: [PATCH] fix(views): remove remaining kodo in Purchases/Cart/Live/Marketplace/Social Co-authored-by: Cursor --- .../checkout-view/CheckoutViewOrderSummary.tsx | 14 +++++++------- .../components/views/live-view/LiveViewChat.tsx | 8 ++++---- .../views/live-view/LiveViewRecommended.tsx | 2 +- .../marketplace-view/MarketplaceViewCategories.tsx | 2 +- .../views/purchases-view/PurchasesViewItem.tsx | 4 ++-- .../views/social-view/SocialViewFeedItem.tsx | 4 ++-- 6 files changed, 17 insertions(+), 17 deletions(-) diff --git a/apps/web/src/components/views/checkout-view/CheckoutViewOrderSummary.tsx b/apps/web/src/components/views/checkout-view/CheckoutViewOrderSummary.tsx index 8faaf2405..17a2b63d9 100644 --- a/apps/web/src/components/views/checkout-view/CheckoutViewOrderSummary.tsx +++ b/apps/web/src/components/views/checkout-view/CheckoutViewOrderSummary.tsx @@ -31,10 +31,10 @@ export function CheckoutViewOrderSummary({ className="flex justify-between items-start text-sm" >
-
+
{item.product.title}
-
+
{item.selectedLicense?.name ?? 'Standard'} License
@@ -46,18 +46,18 @@ export function CheckoutViewOrderSummary({ ))}
-
-
+
+
Subtotal ${cartTotal.toFixed(2)}
-
+
Taxes ${tax.toFixed(2)}
- Total - + Total + ${(cartTotal + tax).toFixed(2)}
diff --git a/apps/web/src/components/views/live-view/LiveViewChat.tsx b/apps/web/src/components/views/live-view/LiveViewChat.tsx index ab7e60114..b118b3381 100644 --- a/apps/web/src/components/views/live-view/LiveViewChat.tsx +++ b/apps/web/src/components/views/live-view/LiveViewChat.tsx @@ -39,7 +39,7 @@ export function LiveViewChat({ > {msg.user}: - {msg.text} + {msg.text}
))}
@@ -49,17 +49,17 @@ export function LiveViewChat({
-
+
onMsgInputChange(e.target.value)} onKeyDown={(e) => e.key === 'Enter' && onSend()} - className="w-full bg-kodo-ink border border-kodo-steel rounded px-4 py-2 text-sm text-white focus:border-kodo-steel outline-none" + className="w-full bg-background border border-border rounded-xl px-4 py-2 text-sm text-foreground focus:border-primary outline-none transition-colors duration-[var(--duration-normal)]" placeholder="Say something..." /> - +
-
+
{CATEGORIES.map((cat) => (