diff --git a/sparkle/package.json b/sparkle/package.json index dce390d17d22..ed4225e68b1f 100644 --- a/sparkle/package.json +++ b/sparkle/package.json @@ -1,6 +1,6 @@ { "name": "@dust-tt/sparkle", - "version": "0.1.94", + "version": "0.1.95", "scripts": { "build": "rm -rf dist && rollup -c", "build:with-tw-base": "rollup -c --environment INCLUDE_TW_BASE:true", diff --git a/sparkle/src/components/Tooltip.tsx b/sparkle/src/components/Tooltip.tsx index 21b9523ab009..a582a74002b1 100644 --- a/sparkle/src/components/Tooltip.tsx +++ b/sparkle/src/components/Tooltip.tsx @@ -49,7 +49,7 @@ export function Tooltip({ // if tooltip text is too long we need to wrap it const labelLength = label?.length || 0; - const labelClasses = labelLength > 80 ? "w-[38em]" : "s-whitespace-nowrap"; + const labelClasses = labelLength > 80 ? "s-w-[38em]" : "s-whitespace-nowrap"; return (