From 01c65a3c21883a6110e450f10fb01f9a3d9077af Mon Sep 17 00:00:00 2001 From: Maksim Orlov Date: Sat, 9 Sep 2017 12:04:44 +0700 Subject: [PATCH] Fix broken links in the deprecation warning for RN and Vue apps --- app/react-native/src/index.js | 4 ++-- app/vue/src/client/index.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/react-native/src/index.js b/app/react-native/src/index.js index 28971345b404..f197d31b91b0 100644 --- a/app/react-native/src/index.js +++ b/app/react-native/src/index.js @@ -17,10 +17,10 @@ export const getStorybookUI = preview.getStorybookUI.bind(preview); export const action = deprecate( deprecatedAction, - '@storybook/react action is deprecated. See: https://github.com/storybooks/storybook/tree/master/addon/actions' + '@storybook/react action is deprecated. See: https://github.com/storybooks/storybook/tree/master/addons/actions' ); export const linkTo = deprecate( deprecatedLinkTo, - '@storybook/react linkTo is deprecated. See: https://github.com/storybooks/storybook/tree/master/addon/links' + '@storybook/react linkTo is deprecated. See: https://github.com/storybooks/storybook/tree/master/addons/links' ); diff --git a/app/vue/src/client/index.js b/app/vue/src/client/index.js index fd6a316d095a..30561b9f2b04 100644 --- a/app/vue/src/client/index.js +++ b/app/vue/src/client/index.js @@ -14,10 +14,10 @@ export const getStorybook = previewApi.getStorybook; // export const action = deprecate( // deprecatedAction, -// '@storybook/react action is deprecated. See: https://github.com/storybooks/storybook/tree/master/addon/actions' +// '@storybook/react action is deprecated. See: https://github.com/storybooks/storybook/tree/master/addons/actions' // ); // export const linkTo = deprecate( // deprecatedLinkTo, -// '@storybook/react linkTo is deprecated. See: https://github.com/storybooks/storybook/tree/master/addon/links' +// '@storybook/react linkTo is deprecated. See: https://github.com/storybooks/storybook/tree/master/addons/links' // );