[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2026-04-09 17:20:44 +00:00
committed by GitHub
parent 090c0226ed
commit fbde5be02c
3 changed files with 19 additions and 12 deletions

View File

@@ -32,14 +32,13 @@ export function AnalyzeLogs({ logs, context }: Props) {
const { data: providers } = api.ai.getEnabledProviders.useQuery(undefined, {
enabled: open,
});
const { mutate, isPending, data, reset } =
api.ai.analyzeLogs.useMutation({
onError: (error) => {
toast.error("Analysis failed", {
description: error.message,
});
},
});
const { mutate, isPending, data, reset } = api.ai.analyzeLogs.useMutation({
onError: (error) => {
toast.error("Analysis failed", {
description: error.message,
});
},
});
const handleAnalyze = () => {
if (!aiId || logs.length === 0) return;
@@ -119,7 +118,11 @@ export function AnalyzeLogs({ logs, context }: Props) {
) : (
<>
<Bot className="mr-2 h-3.5 w-3.5" />
Analyze {logs.length > MAX_LOG_LINES ? `last ${MAX_LOG_LINES}` : logs.length} lines
Analyze{" "}
{logs.length > MAX_LOG_LINES
? `last ${MAX_LOG_LINES}`
: logs.length}{" "}
lines
</>
)}
</Button>

View File

@@ -378,7 +378,7 @@ export const DockerLogsId: React.FC<Props> = ({
<DownloadIcon className="mr-2 h-4 w-4" />
Download logs
</Button>
<AnalyzeLogs logs={filteredLogs} context="runtime" />
<AnalyzeLogs logs={filteredLogs} context="runtime" />
</div>
</div>
{isPaused && (

View File

@@ -253,7 +253,9 @@ ${input.logs}`,
throw new TRPCError({
code: "BAD_REQUEST",
message:
error instanceof Error ? error.message : `Analysis failed: ${error}`,
error instanceof Error
? error.message
: `Analysis failed: ${error}`,
});
}
}),
@@ -285,7 +287,9 @@ ${input.logs}`,
throw new TRPCError({
code: "BAD_REQUEST",
message:
error instanceof Error ? error.message : `Connection failed: ${error}`,
error instanceof Error
? error.message
: `Connection failed: ${error}`,
});
}
}),