From 488173ebdb9a398a9c5fe12a09bd2ce6bb6ffe09 Mon Sep 17 00:00:00 2001 From: Kyle McCormick Date: Tue, 17 Jun 2025 16:27:50 -0400 Subject: [PATCH] fix: Subsections should come before Sections --- src/library-authoring/routes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/library-authoring/routes.ts b/src/library-authoring/routes.ts index 57e5791cb..e7760c6fb 100644 --- a/src/library-authoring/routes.ts +++ b/src/library-authoring/routes.ts @@ -48,8 +48,8 @@ export enum ContentType { collections = 'collections', components = 'components', units = 'units', - sections = 'sections', subsections = 'subsections', + sections = 'sections', } export const allLibraryPageTabs: ContentType[] = Object.values(ContentType);