ScopesContext: Move export from unstable to regular entrypoint (#101765)

Revert unstable export
This commit is contained in:
Tobias Skarhed
2025-03-07 11:40:40 +02:00
committed by GitHub
parent 0d32ba4d43
commit cf95a42507
3 changed files with 3 additions and 6 deletions
@@ -56,3 +56,4 @@ export {
export { isPluginExtensionLink, isPluginExtensionComponent } from './pluginExtensions/utils';
export { setCurrentUser } from './user';
export { RuntimeDataSource } from './RuntimeDataSource';
export { ScopesContext, type ScopesContextValueState, type ScopesContextValue, useScopes } from './ScopesContext';
+2 -6
View File
@@ -9,9 +9,5 @@
* and be subject to the standard policies
*/
export {
ScopesContext,
type ScopesContextValueState,
type ScopesContextValue,
useScopes,
} from './unstable/ScopesContext';
// Dummy export to make it a valid module. Remove when we have real exports.
export const unstable = {};