Skip to content

Commit

Permalink
docs: do not reference lib names
Browse files Browse the repository at this point in the history
This causes more work when renaming a library.
  • Loading branch information
wesleyboar committed May 10, 2024
1 parent e142d04 commit ab245f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const UIPatternsComplexWizardRender: React.FC<{
[add]
);

// Map Array of UIWizardSteps into an array of @tacc/core-components/WizardStep
// Map Array of `UIWizardSteps` into an array of `WizardStep`
const steps: Array<WizardStep<UIWizardSchema>> = useMemo(() => {
return wizardSteps.map((jobStep) => {
const { generateInitialValues, validateThunk, ...stepProps } = jobStep;
Expand Down
2 changes: 1 addition & 1 deletion apps/ui-patterns/src/app/UIPatternsComplexWizard/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export type InitialValueGenerator = (hookValues: {
extra: UIWizardExtra;
}) => Partial<UIWizardSchema>;

// An adapter type for mapping additional values to @tacc/core-components/Wizard
// An adapter type for mapping additional values to `Wizard`
export type UIWizardStep = {
id: string;
name: string;
Expand Down

0 comments on commit ab245f8

Please sign in to comment.