mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-10 05:48:28 +00:00
fix(tui): align integration empty state (#35414)
This commit is contained in:
parent
44b182fe23
commit
29e8502bb0
1 changed files with 5 additions and 1 deletions
|
|
@ -81,7 +81,11 @@ export function DialogIntegration(props: { onConnected?: OnIntegrationConnected
|
|||
<DialogSelect
|
||||
title="Connect a service"
|
||||
options={options()}
|
||||
emptyView={<text fg={theme.textMuted}>No integrations available</text>}
|
||||
emptyView={
|
||||
<box paddingLeft={4} paddingRight={4} paddingTop={1}>
|
||||
<text fg={theme.textMuted}>No integrations available</text>
|
||||
</box>
|
||||
}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue