From c3d01aff0e2980cdd45d522e0a25bdde35ecd645 Mon Sep 17 00:00:00 2001 From: Philip Zingmark Date: Wed, 18 Feb 2026 22:59:12 +0100 Subject: [PATCH] add gpu usage/quota in user profile --- src/pages/profile/UserQuotas.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/src/pages/profile/UserQuotas.tsx b/src/pages/profile/UserQuotas.tsx index ff7b8551..8506c2bd 100644 --- a/src/pages/profile/UserQuotas.tsx +++ b/src/pages/profile/UserQuotas.tsx @@ -52,6 +52,29 @@ export const UserQuotas = ({ user }: { user: User }) => { } /> + {(user.usage as any).gpus != undefined && + (user.quota as any).gpus != undefined && ( + } + label={ + + {t("landing-hero-gpus")} + + {(user.usage as any).gpus + + "/" + + (user.quota as any).gpus} + + + } + /> + )} }