From 6a0e097412d0b9208bbb90c088266e1cd35d400a Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Mon, 9 Jun 2025 17:48:55 -0400 Subject: [PATCH] chore: fix tiny nits --- app/routes/users/overview.tsx | 3 +-- app/types/Machine.ts | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) 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: