musora-content-services 1.0.29 → 1.0.30
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/CHANGELOG.md +2 -0
- package/package.json +1 -1
- package/src/services/sanity.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [1.0.30](https://github.com/railroadmedia/musora-content-services/compare/v1.0.29...v1.0.30) (2024-08-14)
|
|
6
|
+
|
|
5
7
|
### [1.0.29](https://github.com/railroadmedia/musora-content-services/compare/v1.0.28...v1.0.29) (2024-08-14)
|
|
6
8
|
|
|
7
9
|
### [1.0.28](https://github.com/railroadmedia/musora-content-services/compare/v1.0.27...v1.0.28) (2024-08-14)
|
package/package.json
CHANGED
package/src/services/sanity.js
CHANGED
|
@@ -35,7 +35,7 @@ export async function fetchSongById(documentId) {
|
|
|
35
35
|
${fields.join(', ')}
|
|
36
36
|
}`;
|
|
37
37
|
|
|
38
|
-
return fetchSanity(query,
|
|
38
|
+
return fetchSanity(query, false);
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
/**
|
|
@@ -146,7 +146,7 @@ export async function fetchRelatedSongs(brand, songId) {
|
|
|
146
146
|
}`;
|
|
147
147
|
|
|
148
148
|
// Fetch the related songs data
|
|
149
|
-
return fetchSanity(query,
|
|
149
|
+
return fetchSanity(query, false);
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
/**
|