Skip to content

Commit

Permalink
fix(edgeReplaceChange): fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
printerscanner committed Feb 13, 2025
1 parent 121b927 commit c084720
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { PropsTable } from '@/components/props-table';
import {
edgeAddChangeFields,
edgeRemoveChangeFields,
edgeResetChangeFields,
edgeReplaceChangeFields,
edgeSelectionChangeFields,
} from '@/references/types/EdgeChange.fields.ts';

Expand All @@ -27,7 +27,7 @@ various ways an edge can change in a flow.
export type EdgeChange =
| EdgeAddChange
| EdgeRemoveChange
| EdgeResetChange
| EdgeReplaceChange
| EdgeSelectionChange;
```

Expand All @@ -41,9 +41,9 @@ export type EdgeChange =

<PropsTable {...edgeRemoveChangeFields} />

### EdgeResetChange
### EdgeReplaceChange

<PropsTable {...edgeResetChangeFields} />
<PropsTable {...edgeReplaceChangeFields} />

### EdgeSelectionChange

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const edgeRemoveChangeFields: PropsTableProps = {
],
};

export const edgeResetChangeFields: PropsTableProps = {
export const edgeReplaceChangeFields: PropsTableProps = {
props: [
{ name: 'type', type: '"reset"' },
{ name: 'item', type: 'Edge<T>' },
Expand Down

0 comments on commit c084720

Please sign in to comment.