Skip to content

Commit

Permalink
fix product sync
Browse files Browse the repository at this point in the history
  • Loading branch information
diboune committed Oct 18, 2024
1 parent 8c440ae commit b95a56c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/modules/sanity/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export default class SanityModuleService {
return {
set: {
internalTitle: product.title,
pathname: { _type: "slug", current: "/product/" + product.handle },
pathname: { _type: "slug", current: "/products/" + product.handle },
},
};
};
Expand Down
1 change: 1 addition & 0 deletions storefront/components/shared/input-combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ export default forwardRef<
/>
<input
name={name}
required={required}
type="hidden"
value={selectedOption ? selectedOption.id : ""}
/>
Expand Down

0 comments on commit b95a56c

Please sign in to comment.