From fd5500c85badb95fce620267dff4574b7290258a Mon Sep 17 00:00:00 2001 From: Fringg Date: Tue, 30 Jun 2026 01:43:06 +0300 Subject: [PATCH] fix: align SubscriptionRequestRecord type with Remnawave 2.8.0 The panel renamed the subscription-request-history field userUuid (uuid) -> userId (number) in 2.8.0. The field is never read in the UI (render uses id/requestAt/requestIp/userAgent), so this is a type-accuracy fix only. tsc --noEmit passes. --- src/api/adminUsers.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/api/adminUsers.ts b/src/api/adminUsers.ts index ce21696..a3f0e74 100644 --- a/src/api/adminUsers.ts +++ b/src/api/adminUsers.ts @@ -161,7 +161,8 @@ export interface UserPanelInfo { export interface SubscriptionRequestRecord { id: number; - userUuid: string; + // Remnawave 2.8.0 renamed this panel field userUuid (uuid) -> userId (number). + userId: number; requestAt: string; requestIp: string | null; userAgent: string | null;