Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
berekuk committed Nov 16, 2024
1 parent 888fc8c commit 7aecb59
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/ui/src/stories/Forms/NumberFormField.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Meta, StoryObj } from "@storybook/react";
import { ComponentType } from "react";

import { NumberFormField } from "../../index.js";
import { formDecorator } from "./withRHF.js";
Expand All @@ -7,7 +8,11 @@ const meta = {
component: NumberFormField,
decorators: [
formDecorator,
(Story: any) => <div className="w-96">{Story()}</div>,
(Story: ComponentType) => (
<div className="w-96">
<Story />
</div>
),
],
} satisfies Meta<typeof NumberFormField>;
export default meta;
Expand Down

0 comments on commit 7aecb59

Please sign in to comment.