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} + + + } + /> + )} }