Skip to content

Commit bbe7de3

Browse files
committed
cp dines
1 parent d409825 commit bbe7de3

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

src/commands/gateway-config/list.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,10 @@ const ListGatewayConfigsUI = ({
600600
return (
601601
<>
602602
<Breadcrumb items={[{ label: "AI Gateway Configs", active: true }]} />
603-
<ErrorMessage message="Failed to list AI gateway configs" error={error} />
603+
<ErrorMessage
604+
message="Failed to list AI gateway configs"
605+
error={error}
606+
/>
604607
</>
605608
);
606609
}
@@ -631,7 +634,8 @@ const ListGatewayConfigsUI = ({
631634
columns={columns}
632635
emptyState={
633636
<Text color={colors.textDim}>
634-
{figures.info} No AI gateway configs found. Press [c] to create one.
637+
{figures.info} No AI gateway configs found. Press [c] to create
638+
one.
635639
</Text>
636640
}
637641
/>

src/components/DevboxCreatePage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2048,7 +2048,8 @@ export const DevboxCreatePage = ({
20482048
</Box>
20492049
<Box marginLeft={3} flexDirection="column">
20502050
<Text color={colors.textDim} dimColor>
2051-
AI Gateway Config: {gw.gatewayName} ({gw.gateway})
2051+
AI Gateway Config: {gw.gatewayName} (
2052+
{gw.gateway})
20522053
</Text>
20532054
<Text color={colors.textDim} dimColor>
20542055
Secret: {gw.secretName} ({gw.secret})

src/components/GatewayConfigCreatePage.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ export const GatewayConfigCreatePage = ({
8888
}> = [
8989
{
9090
key: "create",
91-
label: isEditing ? "Update AI Gateway Config" : "Create AI Gateway Config",
91+
label: isEditing
92+
? "Update AI Gateway Config"
93+
: "Create AI Gateway Config",
9294
type: "action",
9395
},
9496
{

src/screens/GatewayConfigDetailScreen.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ export function GatewayConfigDetailScreen({
105105
return (
106106
<>
107107
<Breadcrumb
108-
items={[{ label: "AI Gateway Configs" }, { label: "Error", active: true }]}
108+
items={[
109+
{ label: "AI Gateway Configs" },
110+
{ label: "Error", active: true },
111+
]}
109112
/>
110113
<ErrorMessage
111114
message="Failed to load AI gateway config details"

0 commit comments

Comments
 (0)