Skip to content

Commit d9e1208

Browse files
committed
v4.4.0
1 parent d75c9f0 commit d9e1208

File tree

5 files changed

+531
-493
lines changed

5 files changed

+531
-493
lines changed

admin-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"codegen": "graphql-codegen --config codegen.ts"
3131
},
3232
"engines": {
33-
"node": ">=22",
34-
"npm": ">=10"
33+
"node": ">=22.0.0",
34+
"npm": ">=10.0.0"
3535
},
3636
"contributors": [
3737
"Vedran Rudelj <vedran@unchained.shop> (http://www.unchained.shop)",

admin-ui/src/modules/assortment/components/AssortmentImport.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const AssortmentImport = () => {
2222
const { prepareAssortmentImport } = usePrepareAssortmentImport();
2323

2424
const { isImporting, importItems } = useCSVImport({
25-
validate: validateAssortment,
25+
validate: validateAssortment as any, // TODO: FIX type
2626
process: prepareAssortmentImport,
2727
});
2828

examples/minimal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"engineStrict": true,
2424
"engines": {
25-
"node": ">=24.0.0",
25+
"node": ">=22.0.0",
2626
"npm": ">=10.0.0"
2727
},
2828
"scripts": {

0 commit comments

Comments
 (0)