diff --git a/.betterer.results b/.betterer.results
index 6b23e7d65a7..31648327a82 100644
--- a/.betterer.results
+++ b/.betterer.results
@@ -782,12 +782,6 @@ exports[`better eslint`] = {
"packages/grafana-sql/src/components/visual-query-builder/SQLWhereRow.tsx:5381": [
[0, 0, 0, "Do not use any type assertions.", "0"]
],
- "packages/grafana-ui/src/components/Alert/InlineBanner.story.tsx:5381": [
- [0, 0, 0, "\'VerticalGroup\' import from \'@grafana/ui\' is restricted from being used by a pattern. Use Stack component instead.", "0"]
- ],
- "packages/grafana-ui/src/components/Alert/Toast.story.tsx:5381": [
- [0, 0, 0, "\'VerticalGroup\' import from \'@grafana/ui\' is restricted from being used by a pattern. Use Stack component instead.", "0"]
- ],
"packages/grafana-ui/src/components/ColorPicker/ColorPicker.tsx:5381": [
[0, 0, 0, "Unexpected any. Specify a different type.", "0"],
[0, 0, 0, "Unexpected any. Specify a different type.", "1"]
diff --git a/packages/grafana-ui/src/components/Alert/Alert.mdx b/packages/grafana-ui/src/components/Alert/Alert.mdx
index 96c05104a45..16916f92069 100644
--- a/packages/grafana-ui/src/components/Alert/Alert.mdx
+++ b/packages/grafana-ui/src/components/Alert/Alert.mdx
@@ -104,9 +104,7 @@ Inline Banners are task-oriented alerts that notify users of the status of an ac
```jsx
-
-
Child content that includes some alert details, like maybe what actually happened.
-
+ Child content that includes some alert details, like maybe what actually happened.
```
@@ -149,9 +147,7 @@ appEvents.publish({
```jsx
-
-
Child content that includes some alert details, like maybe what actually happened.
-
+ Child content that includes some alert details, like maybe what actually happened.
```
diff --git a/packages/grafana-ui/src/components/Alert/InlineBanner.story.tsx b/packages/grafana-ui/src/components/Alert/InlineBanner.story.tsx
index 1e13af573d6..baa8dd04d67 100644
--- a/packages/grafana-ui/src/components/Alert/InlineBanner.story.tsx
+++ b/packages/grafana-ui/src/components/Alert/InlineBanner.story.tsx
@@ -2,7 +2,7 @@ import { action } from '@storybook/addon-actions';
import { StoryFn, Meta } from '@storybook/react';
import React from 'react';
-import { Alert, AlertVariant, VerticalGroup } from '@grafana/ui';
+import { Alert, AlertVariant, Stack } from '@grafana/ui';
import { StoryExample } from '../../utils/storybook/StoryExample';
@@ -29,11 +29,7 @@ const meta: Meta = {
export const Basic: StoryFn = (args) => {
return (
-
-
-
Child content that includes some alert details, like maybe what actually happened.
-
-
+ Child content that includes some alert details, like maybe what actually happened.