Skip to content

Commit

Permalink
eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewazores committed Jul 31, 2024
1 parent 3ca4d62 commit 1fff317
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/About/AboutDescription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { BuildInfo } from '@app/Shared/Services/api.types';
import { NotificationsContext } from '@app/Shared/Services/Notifications.service';
import { ServiceContext } from '@app/Shared/Services/Services';
import { useSubscriptions } from '@app/utils/hooks/useSubscriptions';
import { Stack, StackItem, Text, TextContent, TextList, TextListItem, TextVariants } from '@patternfly/react-core';
import { Text, TextContent, TextList, TextListItem, TextVariants } from '@patternfly/react-core';
import * as React from 'react';
import { useTranslation } from 'react-i18next';

Expand Down Expand Up @@ -86,7 +86,7 @@ export const AboutDescription: React.FC = () => {
} else {
return <Text component={TextVariants.p}>{t('AboutDescription.COMMIT', { hash: buildInfo.git.hash })}</Text>;
}
}, [buildInfo]);
}, [t, buildInfo]);

return (
<>
Expand Down

0 comments on commit 1fff317

Please sign in to comment.