diff --git a/src/providers/TutorialProvider/TutorialProvider.hooks.ts b/src/providers/TutorialProvider/TutorialProvider.hooks.ts index 5e70656..b4c5c34 100644 --- a/src/providers/TutorialProvider/TutorialProvider.hooks.ts +++ b/src/providers/TutorialProvider/TutorialProvider.hooks.ts @@ -23,6 +23,9 @@ export const useGetTutorialSasToken = () => { }); }; +/** + * Use with caution. There has not been much testing of how using this hook in an app affects the tutorial logic + */ export const useTutorial = () => { const context = useContext(TutorialContext); if (context === undefined) { diff --git a/src/providers/index.ts b/src/providers/index.ts index ac3ccdf..fd9c0bb 100644 --- a/src/providers/index.ts +++ b/src/providers/index.ts @@ -1,6 +1,3 @@ export { TutorialProvider } from './TutorialProvider/TutorialProvider'; export { FeatureToggleProvider } from './FeatureToggleProvider'; -/** - * Use with caution. There has not been much testing of how using this hook in an app affects the tutorial logic - */ export { useTutorial } from './TutorialProvider/TutorialProvider.hooks';