Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
sync demo
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-phan committed Dec 25, 2023
1 parent 87feb96 commit e9f4218
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ async function getLayoutData({storefront, env}: AppLoadContext) {
- /blog/news/blog-post -> /news/blog-post
- /collections/all -> /products
*/
const customPrefixes = {BLOG: '', CATALOG: 'products'};
const customPrefixes = {CATALOG: 'products'};

const headerMenu = data?.headerMenu
? parseMenu(
Expand Down
2 changes: 1 addition & 1 deletion app/sections/ColumnWithText/item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export default ContentColumnItem;

export let schema: HydrogenComponentSchema = {
type: 'column--item',
title: 'Column item',
title: 'Column',
inspector: [
{
group: 'Column',
Expand Down
2 changes: 1 addition & 1 deletion app/sections/CountDown/ButtonItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default ButtonItems;

export let schema: HydrogenComponentSchema = {
type: 'countdown-buttons',
title: 'Buttons',
title: 'Actions',
inspector: [
{
group: 'Buttons',
Expand Down
2 changes: 1 addition & 1 deletion app/sections/CountDown/CountDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default Countdown;

export let schema: HydrogenComponentSchema = {
type: 'count-down',
title: 'Count down',
title: 'Countdown',
toolbar: ['general-settings', ['duplicate', 'delete']],
inspector: [
{
Expand Down
4 changes: 2 additions & 2 deletions app/sections/shared/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,11 @@ export let layoutInputs: InspectorGroup['inputs'] = [
label: 'Items gap',
configs: {
min: 0,
max: 20,
max: 40,
step: 4,
unit: 'px',
},
defaultValue: 0,
defaultValue: 20,
},
{
type: 'select',
Expand Down

0 comments on commit e9f4218

Please sign in to comment.