umwd-components 0.1.774 → 0.1.776
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/src/data/loaders/page-elements/getSinglePage.js +1 -1
- package/dist/cjs/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/src/data/loaders/page-elements/getSinglePage.js +0 -8
- package/dist/esm/tsconfig.build.tsbuildinfo +1 -1
- package/dist/esm/types/components/common/media/minio/UploadMinioMediaForm.d.ts +2 -0
- package/dist/esm/types/data/actions/media/minio/uploadMinioMediaAction.d.ts +1 -0
- package/dist/esm/types/data/services/common/media/minio/minio-service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -93,14 +93,8 @@ async function getSinglePage(slug) {
|
|
|
93
93
|
},
|
|
94
94
|
},
|
|
95
95
|
},
|
|
96
|
-
/*{
|
|
97
|
-
populate: {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
},*/
|
|
101
96
|
},
|
|
102
97
|
});
|
|
103
|
-
console.log(url.href);
|
|
104
98
|
const headers = {
|
|
105
99
|
method: "GET",
|
|
106
100
|
headers: {
|
|
@@ -116,8 +110,6 @@ async function getSinglePage(slug) {
|
|
|
116
110
|
console.error("Error fetching data:", error);
|
|
117
111
|
return null;
|
|
118
112
|
}
|
|
119
|
-
// const res = await fetchData(url.href);
|
|
120
|
-
// return res;
|
|
121
113
|
}
|
|
122
114
|
|
|
123
115
|
export { getSinglePage };
|