@churchapps/content-providers 0.1.7 → 0.1.8

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/index.js CHANGED
@@ -1133,7 +1133,7 @@ var LessonsChurchProvider = class {
1133
1133
  title: s.name,
1134
1134
  thumbnail: s.image,
1135
1135
  path: `${currentPath}/${s.id}`
1136
- }));
1136
+ })).sort((a, b) => a.title.localeCompare(b.title));
1137
1137
  }
1138
1138
  async getLessons(studyId, currentPath) {
1139
1139
  const pathFn = this.config.endpoints.lessons;