Skip to content

Commit

Permalink
chore: rename to seats used
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Dec 17, 2024
1 parent 4fb5f6a commit fe64295
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const LicensedUsersSidebar = ({
>
<ModalContentContainer>
<HeaderRow>
<ModalHeader>Licensed seats</ModalHeader>
<ModalHeader>Seats used</ModalHeader>
</HeaderRow>
<WidgetContainer>
<Row>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/hooks/useLicensedUsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const placeholderData: LicensedUsersSchema = {
export const useLicensedUsers = () => {
const { data, refetch, loading, error } = useApiGetter<LicensedUsersSchema>(
formatApiPath(path),
() => fetcher(formatApiPath(path), 'Licensed users'),
() => fetcher(formatApiPath(path), 'Seats used'),
);

return { data: data || placeholderData, refetch, loading, error };
Expand Down
2 changes: 1 addition & 1 deletion src/lib/metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ export function registerPrometheusMetrics(

const licensedUsers = createGauge({
name: 'licensed_users',
help: 'The number of licensed users.',
help: 'The number of seats used.',
});

const addonEventsHandledCounter = createCounter({
Expand Down

0 comments on commit fe64295

Please sign in to comment.