Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
kdelemme committed Feb 10, 2025
1 parent 9d1364a commit 68d3d55
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import { EuiFlexGroup, EuiFlexItem, EuiSpacer, EuiText, EuiTitle, EuiPanel } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import React from 'react';
import { GetOverviewResponse } from '@kbn/slo-schema/src/rest_specs/routes/get_overview';
import { GetSLOStatsOverviewResponse } from '@kbn/slo-schema/src/rest_specs/routes/get_slo_stats_overview';
import { rulesLocatorID, RulesParams } from '@kbn/observability-plugin/public';
import { useAlertsUrl } from '../../../../hooks/use_alerts_url';
import { useKibana } from '../../../../hooks/use_kibana';
Expand All @@ -18,7 +18,7 @@ export function SLOOverviewAlerts({
data,
isLoading,
}: {
data?: GetOverviewResponse;
data?: GetSLOStatsOverviewResponse;
isLoading: boolean;
}) {
const {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/
import { buildQueryFromFilters, Filter } from '@kbn/es-query';
import { i18n } from '@kbn/i18n';
import { GetOverviewResponse } from '@kbn/slo-schema/src/rest_specs/routes/get_overview';
import { GetSLOStatsOverviewResponse } from '@kbn/slo-schema/src/rest_specs/routes/get_slo_stats_overview';
import { useQuery } from '@tanstack/react-query';
import { useMemo } from 'react';
import { SUMMARY_DESTINATION_INDEX_PATTERN } from '../../../../common/constants';
Expand All @@ -29,7 +29,7 @@ interface UseFetchSloGroupsResponse {
isRefetching: boolean;
isSuccess: boolean;
isError: boolean;
data: GetOverviewResponse | undefined;
data: GetSLOStatsOverviewResponse | undefined;
}

export function useFetchSLOsOverview({
Expand Down

0 comments on commit 68d3d55

Please sign in to comment.