Skip to content

Commit 7a0bf86

Browse files
committed
fix display name bug
1 parent 5bf522a commit 7a0bf86

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/dashboard/src/app/(main)/(protected)/projects/[projectId]/payments/offers/page-client-catalogs-view.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ function OfferCard({ id, activeType, offer, allOffers, existingItems, onSave, on
854854
inputClassName="text-xs font-mono text-center text-muted-foreground"
855855
/>
856856
<EditableInput
857-
value={offer.displayName || ""}
857+
value={draft.displayName || ""}
858858
onUpdate={async (value) => setDraft(prev => ({ ...prev, displayName: value }))}
859859
readOnly={!isEditing}
860860
placeholder={"Offer display name"}

0 commit comments

Comments
 (0)