Skip to content

Commit

Permalink
fix: TS CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hugocostadev committed Oct 9, 2023
1 parent 6e2e1fc commit c08d60f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion apps/meteor/client/views/admin/info/InformationPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import React, { memo } from 'react';
import { useSeatsCap } from '../../../../ee/client/views/admin/users/useSeatsCap';
import Page from '../../../components/Page';
import { useIsEnterprise } from '../../../hooks/useIsEnterprise';
import { PlanName } from '../../../lib/utils/getPlanName';
import SeatsCard from '../manageSubscription/components/cards/SeatsCard';
import DeploymentCard from './DeploymentCard';
import LicenseCard from './LicenseCard';
Expand Down Expand Up @@ -97,7 +98,7 @@ const InformationPage = memo(function InformationPage({
</Grid.Item>
{!showSeatCap && (
<Grid.Item xl={12} height='50%'>
<SeatsCard seatsCap={seatsCap} />
<SeatsCard plan={PlanName.STARTER} />
</Grid.Item>
)}
</Grid.Item>
Expand Down

0 comments on commit c08d60f

Please sign in to comment.