refactor(cli): remove unused Spinner import
The unnecessary Spinner import from 'ink-spinner' was removed in the SearchBox component. This reduces clutter and enhances code readability.
This commit is contained in:
parent
36f465f2cf
commit
803659a06b
@ -2,7 +2,6 @@ import React, {useEffect, useState} from 'react'
|
||||
import {getSuggestion} from '../helpers/search.js'
|
||||
import Input from 'ink-text-input'
|
||||
import {Divider} from './Divider.js'
|
||||
import Spinner from 'ink-spinner'
|
||||
import {Box, Text, useInput, useApp, type Key} from 'ink'
|
||||
|
||||
export function SearchBox<T extends {key: string; displayName: string}>({
|
||||
@ -68,9 +67,6 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
||||
<Input value={query} onChange={(v) => setQuery(v)} showCursor placeholder={'query'} onSubmit={onSubmit} />
|
||||
</Box>
|
||||
<Divider title={isLoading ? 'Loading...' : `${suggestions.length} components found.`} />
|
||||
{isLoading ? (
|
||||
<Spinner />
|
||||
) : (
|
||||
<Box display={'flex'} flexDirection={'column'}>
|
||||
{suggestions.map((name, index) => {
|
||||
return (
|
||||
@ -82,7 +78,6 @@ export function SearchBox<T extends {key: string; displayName: string}>({
|
||||
)
|
||||
})}
|
||||
</Box>
|
||||
)}
|
||||
</Box>
|
||||
)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user