diff --git a/app/routes/users/overview.tsx b/app/routes/users/overview.tsx
index f930f77..a0fcf99 100644
--- a/app/routes/users/overview.tsx
+++ b/app/routes/users/overview.tsx
@@ -105,8 +105,7 @@ export default function Page() {
<>
Users
- Manage the users in your network and their permissions. Tip: You can
- drag machines between users to change ownership.
+ Manage the users in your network and their permissions.
diff --git a/app/types/Machine.ts b/app/types/Machine.ts
index de9b929..5d3e27d 100644
--- a/app/types/Machine.ts
+++ b/app/types/Machine.ts
@@ -1,3 +1,4 @@
+import type { PreAuthKey } from './PreAuthKey';
import type { User } from './User';
export interface Machine {
@@ -12,7 +13,7 @@ export interface Machine {
lastSeen: string;
expiry: string | null;
- preAuthKey?: unknown; // TODO
+ preAuthKey?: PreAuthKey;
createdAt: string;
registerMethod: