From f57feaa65cb0cbcfa9aef63ae85d24b0d0fad6f0 Mon Sep 17 00:00:00 2001 From: Taylor Noj Date: Thu, 20 Feb 2025 23:35:30 -0500 Subject: [PATCH] update prop description to no longer link to storybook in Button, Text, Popover --- packages/components-native/src/Button/Button.tsx | 2 +- packages/components-native/src/Text/Text.tsx | 2 +- packages/components/src/Popover/Popover.tsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/components-native/src/Button/Button.tsx b/packages/components-native/src/Button/Button.tsx index 089462e411..c92953947a 100644 --- a/packages/components-native/src/Button/Button.tsx +++ b/packages/components-native/src/Button/Button.tsx @@ -81,7 +81,7 @@ interface CommonButtonProps { /** * **Use at your own risk:** Custom style for specific elements. This should only be used as a * **last resort**. Using this may result in unexpected side effects. - * More information [here](https://atlantis.getjobber.com/storybook/?path=/docs/guides-customizing-components--docs#unsafe_-props). + * More information in the Customizing components Guide. */ readonly UNSAFE_style?: ButtonUnsafeStyle; } diff --git a/packages/components-native/src/Text/Text.tsx b/packages/components-native/src/Text/Text.tsx index e4c75d4aa5..73573b1cab 100644 --- a/packages/components-native/src/Text/Text.tsx +++ b/packages/components-native/src/Text/Text.tsx @@ -90,7 +90,7 @@ export interface TextProps /** * **Use at your own risk:** Custom style for specific elements. This should only be used as a * **last resort**. Using this may result in unexpected side effects. - * More information [here](https://atlantis.getjobber.com/storybook/?path=/docs/guides-customizing-components--docs#unsafe_-props). + * More information in the Customizing components Guide. */ readonly UNSAFE_style?: TypographyUnsafeStyle; } diff --git a/packages/components/src/Popover/Popover.tsx b/packages/components/src/Popover/Popover.tsx index 81c98608ab..0f68e4b508 100644 --- a/packages/components/src/Popover/Popover.tsx +++ b/packages/components/src/Popover/Popover.tsx @@ -37,7 +37,7 @@ export interface PopoverProps { /** * **Use at your own risk:** Custom class names for specific elements. This should only be used as a * **last resort**. Using this may result in unexpected side effects. - * More information [here](https://atlantis.getjobber.com/storybook/?path=/docs/guides-customizing-components--docs#unsafe_-props). + * More information in the Customizing components Guide. */ readonly UNSAFE_className?: { container?: string; @@ -48,7 +48,7 @@ export interface PopoverProps { /** * **Use at your own risk:** Custom style for specific elements. This should only be used as a * **last resort**. Using this may result in unexpected side effects. - * More information [here](https://atlantis.getjobber.com/storybook/?path=/docs/guides-customizing-components--docs#unsafe_-props). + * More information in the Customizing components Guide. */ readonly UNSAFE_style?: { container?: CSSProperties;