style(services): apply formatter to frontend services runtime

This commit is contained in:
Developer
2026-06-22 19:13:59 +00:00
parent 1da67f38c7
commit 739ad38e29
13 changed files with 177 additions and 61 deletions
+5 -1
View File
@@ -16,7 +16,11 @@ type SshTaskResult = {
stderr: string;
};
export function SshTaskWidget({ widget, refreshIntervalMs, description }: Props) {
export function SshTaskWidget({
widget,
refreshIntervalMs,
description,
}: Props) {
const { data, isLoading } = useWidgetData(widget.id, refreshIntervalMs);
const result = data?.data as SshTaskResult | undefined;