Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions packages/web/lib/components/decoded/LookDetailClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,6 @@ function SpotItemList({
const solution = spot.top_solution;
const brand = (solution.metadata as { brand?: string } | undefined)
?.brand;
const viewUrl = solution.affiliate_url ?? solution.original_url;
return (
<li key={spot.id} className="flex items-center gap-2">
<span className="relative size-10 shrink-0 overflow-hidden rounded-md bg-muted">
Expand Down Expand Up @@ -425,16 +424,6 @@ function SpotItemList({
)}
</div>
<ItemLikeButton itemId={null} />
{viewUrl && (
<a
href={viewUrl}
target="_blank"
rel="noopener noreferrer"
className="shrink-0 text-[11px] font-medium text-primary underline-offset-2 hover:underline"
>
{t("items.view")}
</a>
)}
</li>
);
}
Expand Down
6 changes: 4 additions & 2 deletions packages/web/lib/components/vton/VtonItemPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,11 @@ export function VtonItemPanel({
>
{/* Header */}
<div className="flex items-center justify-between border-b border-white/10 px-4 py-3">
<h2 className="text-sm font-semibold text-white">
<h2 className="flex items-center gap-2 text-sm font-semibold text-white">
{t("panel.title")}
<span className="ml-2 text-[#f7e64a]">PoC</span>
<span className="rounded-full border border-[#f7e64a]/40 bg-[#f7e64a]/10 px-1.5 py-0.5 text-[10px] font-medium uppercase tracking-wide text-[#f7e64a]">
{t("panel.betaBadge")}
</span>
</h2>
<button
type="button"
Expand Down
3 changes: 2 additions & 1 deletion packages/web/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,8 @@
"resultAlt": "Result"
},
"panel": {
"title": "Virtual Try-On",
"title": "Try-on",
"betaBadge": "beta",
"closeAria": "Close VTON modal",
"itemsTab": "Items",
"postsTab": "Posts",
Expand Down
3 changes: 2 additions & 1 deletion packages/web/messages/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,8 @@
"resultAlt": "결과"
},
"panel": {
"title": "가상 피팅",
"title": "Try-on",
"betaBadge": "beta",
"closeAria": "VTON 모달 닫기",
"itemsTab": "아이템",
"postsTab": "포스트",
Expand Down
Loading