diff --git a/.betterer.results b/.betterer.results index 4018a113db2..ec6320fa7de 100644 --- a/.betterer.results +++ b/.betterer.results @@ -829,9 +829,6 @@ exports[`better eslint`] = { [0, 0, 0, "\'VerticalGroup\' import from \'@grafana/ui\' is restricted from being used by a pattern. Use Stack component instead.", "0"], [0, 0, 0, "\'HorizontalGroup\' import from \'@grafana/ui\' is restricted from being used by a pattern. Use Stack component instead.", "1"] ], - "packages/grafana-ui/src/components/Link/TextLink.story.tsx:5381": [ - [0, 0, 0, "\'VerticalGroup\' import from \'../Layout/Layout\' is restricted from being used by a pattern. Use Stack component instead.", "0"] - ], "packages/grafana-ui/src/components/MatchersUI/FieldValueMatcher.tsx:5381": [ [0, 0, 0, "Do not use any type assertions.", "0"] ], diff --git a/packages/grafana-ui/src/components/Link/TextLink.story.tsx b/packages/grafana-ui/src/components/Link/TextLink.story.tsx index deeed326145..65a0238f21e 100644 --- a/packages/grafana-ui/src/components/Link/TextLink.story.tsx +++ b/packages/grafana-ui/src/components/Link/TextLink.story.tsx @@ -2,7 +2,7 @@ import { Meta, StoryFn } from '@storybook/react'; import React from 'react'; import { StoryExample } from '../../utils/storybook/StoryExample'; -import { VerticalGroup } from '../Layout/Layout'; +import { Stack } from '../Layout/Stack/Stack'; import { Text } from '../Text/Text'; import { TextLink } from './TextLink'; @@ -41,7 +41,7 @@ const meta: Meta = { export const Example: StoryFn = (args) => { return ( - + To get started with a forever free Grafana Cloud account, sign up at   @@ -52,7 +52,7 @@ export const Example: StoryFn = (args) => { - + Learn how in the docs @@ -60,7 +60,7 @@ export const Example: StoryFn = (args) => { *The examples cannot contemplate an internal link due to conflicts between Storybook and React Router - + ); };