Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions apps/desktop/src/components/onboarding/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,7 @@ const PROVIDER_ROW_CLASS =
'group flex w-full items-center justify-between gap-3 rounded-[6px] px-3 py-2.5 text-left transition-colors hover:bg-(--ui-control-hover-background)'

/** Quick-key row for API-key providers (Fireworks #2 after Nous, OpenRouter further down). */
export function KeyProviderRow({
onClick,
pitch,
title
}: {
onClick: () => void
pitch: string
title: string
}) {
export function KeyProviderRow({ onClick, pitch, title }: { onClick: () => void; pitch: string; title: string }) {
return (
<RowButton className={PROVIDER_ROW_CLASS} onClick={onClick}>
<div className="min-w-0">
Expand Down
Loading