+
{title}
diff --git a/packages/ui/src/components/Select/Select.tsx b/packages/ui/src/components/Select/Select.tsx
index ce3e094b9d..d404b39e1a 100644
--- a/packages/ui/src/components/Select/Select.tsx
+++ b/packages/ui/src/components/Select/Select.tsx
@@ -58,7 +58,7 @@ export const Select = forwardRef((props, ref) => {
useEffect(() => {
if (!label && !ariaLabel && !ariaLabelledBy) {
console.warn(
- 'TextField requires either a visible label, aria-label, or aria-labelledby for accessibility',
+ 'Select requires either a visible label, aria-label, or aria-labelledby for accessibility',
);
}
}, [label, ariaLabel, ariaLabelledBy]);
diff --git a/packages/ui/src/utils/componentDefinitions.ts b/packages/ui/src/utils/componentDefinitions.ts
index 86aacb7d58..30d1c93d23 100644
--- a/packages/ui/src/utils/componentDefinitions.ts
+++ b/packages/ui/src/utils/componentDefinitions.ts
@@ -42,7 +42,7 @@ export const componentDefinitions = {
},
dataAttributes: {
size: ['small', 'medium', 'large'] as const,
- variant: ['primary', 'secondary', 'ghost'] as const,
+ variant: ['primary', 'secondary', 'tertiary'] as const,
},
},
ButtonIcon: {