+ )}
+ >
);
};
diff --git a/src/studio-home/tabs-section/messages.ts b/src/studio-home/tabs-section/messages.ts
index 076f9c8eb7..cecac598e1 100644
--- a/src/studio-home/tabs-section/messages.ts
+++ b/src/studio-home/tabs-section/messages.ts
@@ -58,6 +58,24 @@ const messages = defineMessages({
id: 'course-authoring.studio-home.libraries.placeholder.body',
defaultMessage: 'This is a placeholder page, as the Library Authoring MFE is not enabled.',
},
+ librariesV2TabBetaBadge: {
+ id: 'course-authoring.studio-home.libraries.tab.library.beta-badge',
+ defaultMessage: 'Beta',
+ description: 'Text used to mark the Libraries v2 feature as "in beta"',
+ },
+ librariesV2TabBetaText: {
+ id: 'course-authoring.studio-home.libraries.tab.library.beta-text',
+ defaultMessage: 'Welcome to the new Beta Libraries experience! Libraries have been redesigned from the ground up,'
+ + ' making it much easier to reuse and remix course content. The new Libraries space lets you create, organize and'
+ + ' manage new content; reuse your content in as many courses as you\'d like; sync updates centrally; and create'
+ + ' and randomize problem sets. See {link} for details.',
+ description: 'Explanatory text shown on the Libraries v2 tab during the beta release.',
+ },
+ librariesV2TabBetaTutorialLinkText: {
+ id: 'course-authoring.studio-home.libraries.tab.library.beta-link-text',
+ defaultMessage: 'Libraries v2 tutorial',
+ description: 'Text to use as the link in the "course-authoring.studio-home.libraries.tab.library.beta-text" message',
+ },
librariesV2TabLibrarySearchPlaceholder: {
id: 'course-authoring.studio-home.libraries.tab.library.search-placeholder',
defaultMessage: 'Search',
diff --git a/src/studio-home/tabs-section/utils.js b/src/studio-home/tabs-section/utils.js
index ec4fb9303e..dff32dc95a 100644
--- a/src/studio-home/tabs-section/utils.js
+++ b/src/studio-home/tabs-section/utils.js
@@ -11,11 +11,5 @@ const sortAlphabeticallyArray = (arr) => [...arr]
return firstDisplayName.localeCompare(secondDisplayName);
});
-const isMixedOrV1LibrariesMode = (libMode) => ['mixed', 'v1 only'].includes(libMode);
-const isMixedOrV2LibrariesMode = (libMode) => ['mixed', 'v2 only'].includes(libMode);
-
-export {
- sortAlphabeticallyArray,
- isMixedOrV1LibrariesMode,
- isMixedOrV2LibrariesMode,
-};
+// eslint-disable-next-line import/prefer-default-export
+export { sortAlphabeticallyArray };