Wizard: Rename component directory to components

This renames `component` directory to `components` for the sake of consistency.
This commit is contained in:
regexowl 2025-03-27 16:55:50 +01:00 committed by Klara Simickova
parent 5de195b54f
commit b5130e3a42
3 changed files with 2 additions and 2 deletions

View file

@ -2,8 +2,8 @@ import React from 'react';
import { Form, Text, Title } from '@patternfly/react-core';
import EmptyUserState from './component/Empty';
import UserInfo from './component/UserInfo';
import EmptyUserState from './components/Empty';
import UserInfo from './components/UserInfo';
import { useAppSelector } from '../../../../store/hooks';
import { selectUsers } from '../../../../store/wizardSlice';