@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.cjs CHANGED
@@ -1189,7 +1189,7 @@ var LessonsChurchProvider = class {
1189
1189
  title: s.name,
1190
1190
  thumbnail: s.image,
1191
1191
  path: `${currentPath}/${s.id}`
1192
- }));
1192
+ })).sort((a, b) => a.title.localeCompare(b.title));
1193
1193
  }
1194
1194
  async getLessons(studyId, currentPath) {
1195
1195
  const pathFn = this.config.endpoints.lessons;