Skip to content

Commit 579943e

Browse files
committed
clean up
1 parent b62c25a commit 579943e

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/dev/codemods/src/s1-to-s2/src/codemods/components/Column/transform.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ import {updateKeyToId} from '../../shared/transforms';
88
*/
99
export default function transformColumn(path: NodePath<t.JSXElement>) {
1010
// Update key to id
11-
// Reason: Standardizing collection item identifiers.
1211
updateKeyToId(path);
1312
}

packages/dev/codemods/src/s1-to-s2/src/codemods/components/Divider/transform.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ import * as t from '@babel/types';
88
*/
99
export default function transformDivider(path: NodePath<t.JSXElement>) {
1010
// Remove Divider component if within a Dialog
11-
// Reason: Updated design for Dialog in Spectrum 2
1211
removeComponentIfWithinParent(path, {parentComponent: 'Dialog'});
1312
}

0 commit comments

Comments
 (0)