diff --git a/packages/noodl-core-ui/src/components/popups/Tooltip/Tooltip.tsx b/packages/noodl-core-ui/src/components/popups/Tooltip/Tooltip.tsx
index 798153e..5ed516f 100644
--- a/packages/noodl-core-ui/src/components/popups/Tooltip/Tooltip.tsx
+++ b/packages/noodl-core-ui/src/components/popups/Tooltip/Tooltip.tsx
@@ -11,7 +11,7 @@ import css from './Tooltip.module.scss';
export interface TooltipProps extends UnsafeStyleProps {
content: SingleSlot;
- fineType?: string;
+ fineType?: string | string[];
children: Slot;
showAfterMs?: number;
@@ -79,9 +79,17 @@ export function Tooltip({
{fineType && (
-
+ {Array.isArray(fineType) ? (
+ fineType.map((x) => (
+
+ ))
+ ) : (
+
+ )}
)}
diff --git a/packages/noodl-editor/src/editor/src/views/panels/CloudServicePanel/CloudServiceCard/CloudServiceCard.tsx b/packages/noodl-editor/src/editor/src/views/panels/CloudServicePanel/CloudServiceCard/CloudServiceCard.tsx
index 307f335..22903ff 100644
--- a/packages/noodl-editor/src/editor/src/views/panels/CloudServicePanel/CloudServiceCard/CloudServiceCard.tsx
+++ b/packages/noodl-editor/src/editor/src/views/panels/CloudServicePanel/CloudServiceCard/CloudServiceCard.tsx
@@ -123,7 +123,10 @@ export function CloudServiceCard({
{isEditorEnvironment && (