From c7682cb202f8ead95c81a6699f23092f0ca8c02f Mon Sep 17 00:00:00 2001 From: Rivka Ungar Date: Thu, 23 May 2024 11:09:49 +0300 Subject: [PATCH] fix(Checkbox storybook): story is using Link from storybook-blocks --- .../Checkbox/__stories__/checkbox.stories.tsx | 21 ++++--------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/packages/core/src/components/Checkbox/__stories__/checkbox.stories.tsx b/packages/core/src/components/Checkbox/__stories__/checkbox.stories.tsx index 614366ee21..627771388f 100644 --- a/packages/core/src/components/Checkbox/__stories__/checkbox.stories.tsx +++ b/packages/core/src/components/Checkbox/__stories__/checkbox.stories.tsx @@ -1,4 +1,5 @@ -import { createComponentTemplate, Link } from "vibe-storybook-components"; +import { createComponentTemplate } from "vibe-storybook-components"; +import Link from "../../Link/Link"; import Checkbox from "../Checkbox"; import { createStoryMetaSettingsDecorator } from "../../../storybook"; import "./checkbox.stories.scss"; @@ -49,25 +50,11 @@ export const SingleCheckbox: Story = { checked label={ <> - I agree to the - - Terms of Service - - and{" "} - - Privacy Policy - - . + I agree to the and{" "} + . } /> ), - parameters: { - docs: { - liveEdit: { - isEnabled: false - } - } - }, name: "Single checkbox" };