Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Sudia <[email protected]>
  • Loading branch information
thedevelopnik committed Jan 14, 2025
1 parent 03daaaf commit 3d8f7b6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
7 changes: 6 additions & 1 deletion web/packages/teleport/src/Discover/Kubernetes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,12 @@ import React from 'react';
import { ResourceViewConfig } from 'teleport/Discover/flow';
import { EnrollEksCluster } from 'teleport/Discover/Kubernetes/EnrollEKSCluster';
import { KubeLocation, ResourceSpec } from 'teleport/Discover/SelectResource';
import { AwsAccount, Finished, Overview, ResourceKind } from 'teleport/Discover/Shared';
import {
AwsAccount,
Finished,
Overview,
ResourceKind,
} from 'teleport/Discover/Shared';
import { DiscoverEvent } from 'teleport/services/userEvent';

import { KubeWrapper } from './KubeWrapper';
Expand Down
14 changes: 5 additions & 9 deletions web/packages/teleport/src/Discover/Shared/Overview/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
*/

import {
ActionButtons,
Expand All @@ -36,23 +36,19 @@ export function Overview() {
'Egress from your Kubernetes cluster to Teleport.',
'Helm installed on your local machine.',
'Kubernetes API access to install the Helm chart.',
]
],
},
}
};

return (
<>
<Header>
Overview
</Header>
<Header>Overview</Header>
<ul>
{pageItems.kubernetes.overview.map((item, index) => (
<li key={index}>{item}</li>
))}
</ul>
<Header>
Prerequisites
</Header>
<Header>Prerequisites</Header>
<HeaderSubtitle>
Make sure you have these ready before continuing.
</HeaderSubtitle>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

export { Overview } from './Overview';
export { Overview } from './Overview';

0 comments on commit 3d8f7b6

Please sign in to comment.