Skip to content

Commit

Permalink
Merge pull request #1303 from sgratch/fix-typo-warned-by-lint
Browse files Browse the repository at this point in the history
Fix typo warned by linter
  • Loading branch information
yaacov authored Aug 4, 2024
2 parents 8295a90 + b4e5fde commit c0e2317
Show file tree
Hide file tree
Showing 15 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ci/deploy-kubevirt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

K8S_TIMEOUT=${K8S_TIMEOUT:="360s"}

# When updating the componenets versions folow HCO recomendations:
# When updating the components versions folow HCO recomendations:
# HCO:
# https://github.com/kubevirt/hyperconverged-cluster-operator
# HCO configuration file:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @index(['./*', /__/g], f => `export * from '${f.path}';`)
export * from './actions';
export * from './componenets';
export * from './components';
export * from './utils';
export * from './views';
export * from './yamlTemplates';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { NetworkMapActionsDropdown } from 'src/modules/NetworkMaps/actions';
import { NetworkMapCriticalConditions } from 'src/modules/NetworkMaps/componenets';
import { NetworkMapCriticalConditions } from 'src/modules/NetworkMaps/components';
import { useGetDeleteAndEditAccessReview } from 'src/modules/Providers/hooks';
import { PageHeadings } from 'src/modules/Providers/utils';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import {
} from '@kubev2v/types';
import { useK8sWatchResource } from '@openshift-console/dynamic-plugin-sdk';

import { NetworkMapsAddButton } from '../../componenets';
import NetworkMapsEmptyState from '../../componenets/NetworkMapsEmptyState';
import { NetworkMapsAddButton } from '../../components';
import NetworkMapsEmptyState from '../../components/NetworkMapsEmptyState';
import { getNetworkMapPhase, NETWORK_MAP_STATUS, NetworkMapData } from '../../utils';

import NetworkMapRow from './NetworkMapRow';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @index(['./*', /__/g], f => `export * from '${f.path}';`)
export * from './actions';
export * from './componenets';
export * from './components';
export * from './utils';
export * from './views';
export * from './yamlTemplates';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { useGetDeleteAndEditAccessReview } from 'src/modules/Providers/hooks';
import { PageHeadings } from 'src/modules/Providers/utils';
import { StorageMapActionsDropdown } from 'src/modules/StorageMaps/actions';
import { StorageMapCriticalConditions } from 'src/modules/StorageMaps/componenets';
import { StorageMapCriticalConditions } from 'src/modules/StorageMaps/components';

import {
StorageMapModel,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import {
} from '@kubev2v/types';
import { useK8sWatchResource } from '@openshift-console/dynamic-plugin-sdk';

import { StorageMapsAddButton } from '../../componenets';
import StorageMapsEmptyState from '../../componenets/StorageMapsEmptyState';
import { StorageMapsAddButton } from '../../components';
import StorageMapsEmptyState from '../../components/StorageMapsEmptyState';
import { getStorageMapPhase, STORAGE_MAP_STATUS, StorageMapData } from '../../utils';

import StorageMapRow from './StorageMapRow';
Expand Down

0 comments on commit c0e2317

Please sign in to comment.