Skip to content

Commit 5a5bf5c

Browse files
committed
fix(byok): use EMCN Input for search field instead of ui Input
Replace @/components/ui Input with the already-imported EmcnInput for design-system consistency.
1 parent 4ccc1e5 commit 5a5bf5c

File tree

1 file changed

+1
-2
lines changed
  • apps/sim/app/workspace/[workspaceId]/settings/components/byok

1 file changed

+1
-2
lines changed

apps/sim/app/workspace/[workspaceId]/settings/components/byok/byok.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import {
3030
PerplexityIcon,
3131
SerperIcon,
3232
} from '@/components/icons'
33-
import { Input } from '@/components/ui'
3433
import { BYOKKeySkeleton } from '@/app/workspace/[workspaceId]/settings/components/byok/byok-skeleton'
3534
import {
3635
type BYOKKey,
@@ -239,7 +238,7 @@ export function BYOK() {
239238
className='h-[14px] w-[14px] flex-shrink-0 text-[var(--text-tertiary)]'
240239
strokeWidth={2}
241240
/>
242-
<Input
241+
<EmcnInput
243242
placeholder='Search providers...'
244243
value={searchTerm}
245244
onChange={(e) => setSearchTerm(e.target.value)}

0 commit comments

Comments
 (0)