We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d41298 commit c056392Copy full SHA for c056392
src/studio-home/tabs-section/libraries-tab/index.tsx
@@ -136,7 +136,7 @@ const LibrariesTab = () => {
136
137
return (
138
<>
139
- <MigrateLegacyLibrariesAlert />
+ {getConfig().ENABLE_LEGACY_LIBRARY_MIGRATOR === 'true' && (<MigrateLegacyLibrariesAlert />)}
140
<div className="courses-tab">
141
<ActionRow className="my-3">
142
<SearchField
@@ -154,7 +154,7 @@ const LibrariesTab = () => {
154
155
{intl.formatMessage(messages.coursesPaginationInfo, {
156
length: currentPageData?.length,
157
- total: data.libraries.length,
+ total: data?.libraries.length,
158
})}
159
</>
160
)}
0 commit comments