We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06540a5 commit c0a9e20Copy full SHA for c0a9e20
src/components/Simulator/WalletHome/__stories__/WalletBalance.stories.tsx
@@ -1,10 +1,19 @@
1
+import pickBy from "lodash/pickBy"
2
import type { Meta, StoryObj } from "@storybook/react"
3
4
+import { viewportModes } from "../../../../../.storybook/modes"
5
import { WalletBalance as Component } from "../WalletBalance"
6
7
const meta = {
8
title: "Molecules / Display Content / Simulator / WalletHome / WalletBalance",
9
component: Component,
10
+ parameters: {
11
+ chromatic: {
12
+ modes: pickBy(viewportModes, ({ viewport }) =>
13
+ ["base", "md"].includes(viewport)
14
+ ),
15
+ },
16
17
} satisfies Meta<typeof Component>
18
19
export default meta
0 commit comments