Skip to content

Commit

Permalink
OV-369: * change properties name in instructions.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
stefano-lacorazza committed Sep 27, 2024
1 parent 2874d6c commit b31643e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ const avoidListItems = [
'Hand gestures above the chest or pointing gestures',
];

type InstructionProperties = {
type Properties = {
onClickNext: () => void;
};

const Instruction: React.FC<InstructionProperties> = ({ onClickNext }) => {
const Instruction: React.FC<Properties> = ({ onClickNext }) => {
return (
<Flex className={styles['flex-container']}>
<Flex className={styles['inner-flex']}>
Expand Down

0 comments on commit b31643e

Please sign in to comment.