System:
- {hwInfo()[name]?.system ? (
- {hwInfo()[name]?.system}
- ) : (
- Not set
- )}
+ {hwInfo()[name]?.system
+ ? {hwInfo()[name]?.system}
+ : Not set}
Target Host:
- {deploymentInfo()[name] ? (
- {deploymentInfo()[name]}
- ) : (
- Not set
- )}
- {/* {deploymentInfo()[name]}
+ : Not set}
+ {
+ /*
}>
@@ -119,7 +116,8 @@ export const MachineListItem = (props: MachineListItemProps) => {
}
>
{(i) => + i()}
- */}
+ */
+ }
{/* Show only the first error at the bottom */}
diff --git a/pkgs/webview-ui/app/src/floating/index.tsx b/pkgs/webview-ui/app/src/floating/index.tsx
index 96267c82f..71ff78bbb 100644
--- a/pkgs/webview-ui/app/src/floating/index.tsx
+++ b/pkgs/webview-ui/app/src/floating/index.tsx
@@ -13,9 +13,9 @@ export interface UseFloatingOptions<
whileElementsMounted?: (
reference: R,
floating: F,
- update: () => void
- // eslint-disable-next-line @typescript-eslint/no-invalid-void-type
- ) => void | (() => void);
+ update: () => void,
+ ) => // eslint-disable-next-line @typescript-eslint/no-invalid-void-type
+ void | (() => void);
}
interface UseFloatingState extends Omit