diff --git a/frontend/src/component/admin/license/License.tsx b/frontend/src/component/admin/license/License.tsx index f0b5f7b90e..d25eb5b299 100644 --- a/frontend/src/component/admin/license/License.tsx +++ b/frontend/src/component/admin/license/License.tsx @@ -103,6 +103,14 @@ export const License = () => { {license.seats} + + + Release templates + + + {license.releaseTemplates} + + Expire at diff --git a/frontend/src/hooks/api/getters/useLicense/useLicense.ts b/frontend/src/hooks/api/getters/useLicense/useLicense.ts index f24b4f8e0d..21a9924957 100644 --- a/frontend/src/hooks/api/getters/useLicense/useLicense.ts +++ b/frontend/src/hooks/api/getters/useLicense/useLicense.ts @@ -25,6 +25,7 @@ export interface License { instanceName: string; plan: string; seats: number; + releaseTemplates: number; expireAt: Date; }; loading: boolean;