From 8bdc491ce37b9e93ff78d214fd77a454bfdb82ae Mon Sep 17 00:00:00 2001 From: James Brooks Date: Wed, 6 Aug 2025 17:16:26 +0100 Subject: [PATCH] BUI - Remove CSS import from Select component Signed-off-by: James Brooks --- .changeset/quick-keys-post.md | 5 +++++ packages/ui/src/components/Select/Select.tsx | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .changeset/quick-keys-post.md diff --git a/.changeset/quick-keys-post.md b/.changeset/quick-keys-post.md new file mode 100644 index 0000000000..c0e56be791 --- /dev/null +++ b/.changeset/quick-keys-post.md @@ -0,0 +1,5 @@ +--- +'@backstage/ui': patch +--- + +Remove stylesheet import from Select component. diff --git a/packages/ui/src/components/Select/Select.tsx b/packages/ui/src/components/Select/Select.tsx index d404b39e1a..c63e8964ab 100644 --- a/packages/ui/src/components/Select/Select.tsx +++ b/packages/ui/src/components/Select/Select.tsx @@ -25,7 +25,6 @@ import { Text, } from 'react-aria-components'; import clsx from 'clsx'; -import './Select.styles.css'; import { SelectProps } from './types'; import { useStyles } from '../../hooks/useStyles'; import { FieldLabel } from '../FieldLabel';