We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b62c25a commit 579943eCopy full SHA for 579943e
packages/dev/codemods/src/s1-to-s2/src/codemods/components/Column/transform.ts
@@ -8,6 +8,5 @@ import {updateKeyToId} from '../../shared/transforms';
8
*/
9
export default function transformColumn(path: NodePath<t.JSXElement>) {
10
// Update key to id
11
- // Reason: Standardizing collection item identifiers.
12
updateKeyToId(path);
13
}
packages/dev/codemods/src/s1-to-s2/src/codemods/components/Divider/transform.ts
@@ -8,6 +8,5 @@ import * as t from '@babel/types';
export default function transformDivider(path: NodePath<t.JSXElement>) {
// Remove Divider component if within a Dialog
- // Reason: Updated design for Dialog in Spectrum 2
removeComponentIfWithinParent(path, {parentComponent: 'Dialog'});
0 commit comments