Skip to content

Commit

Permalink
[WNMGDS-2005] Remove prop from StepList (#2260)
Browse files Browse the repository at this point in the history
Remove prop from StepList.
  • Loading branch information
zarahzachz authored and pwolfert committed Nov 17, 2022
1 parent 8774c1f commit b859415
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions packages/design-system/src/components/StepList/StepList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ export interface StepListProps {
* the substring `%{step}` is replaced with that step's `heading`.
*/
actionsLabelText?: string;
/**
* A template string for the aria-label for a step's description where
* the substring `%{step}` is replaced with that step's `heading`.
*/
descriptionLabelText?: string;
/**
* A template string for the aria-label describing a step's substeps where
* the substring `%{step}` is replaced with that step's `heading`.
Expand All @@ -52,7 +47,6 @@ export const StepList = ({
resumeText = 'Resume',
startText = 'Start',
actionsLabelText = 'Primary actions for %{step}',
descriptionLabelText = 'Description for %{step}',
substepsLabelText = 'Secondary actions for %{step}',
...otherProps
}: StepListProps) => (
Expand All @@ -68,7 +62,6 @@ export const StepList = ({
resumeText,
startText,
actionsLabelText,
descriptionLabelText,
substepsLabelText,
...otherProps,
}}
Expand Down

0 comments on commit b859415

Please sign in to comment.