fix spinner position in VirtualMultiSelect

This commit is contained in:
jeffvli
2026-01-17 20:19:06 -08:00
parent 4155cd0963
commit 123f09da6c
@@ -258,11 +258,11 @@ export function VirtualMultiSelect<T>({
tabIndex={disabled ? -1 : 0} tabIndex={disabled ? -1 : 0}
> >
{isLoading ? ( {isLoading ? (
<Center h="100%"> <Center h="100%" w="100%">
<Spinner /> <Spinner container />
</Center> </Center>
) : stableOptions.length === 0 ? ( ) : stableOptions.length === 0 ? (
<Center h="100%"> <Center h="100%" w="100%">
<Text isMuted isNoSelect size="sm"> <Text isMuted isNoSelect size="sm">
{t('common.noResultsFromQuery', { postProcess: 'sentenceCase' })} {t('common.noResultsFromQuery', { postProcess: 'sentenceCase' })}
</Text> </Text>