Skip to content

Commit f201865

Browse files
committed
Merge branch 'at/wizard-integration' of https://github.com/mongodb/leafygreen-ui into at/wizard-integration
2 parents 814af43 + 7a1b203 commit f201865

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/lib/src/childQueries/findChild/findChild.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Baz.displayName = 'Baz';
3030
(Bar as any).isBar = true;
3131
(Baz as any).isBaz = true;
3232

33-
describe('packages/compound-component/findChild', () => {
33+
describe('packages/lib/findChild', () => {
3434
test('should find a child component with matching static property', () => {
3535
// Create an iterable to test different iteration scenarios
3636
const children = [<Foo text="Foo" />, <Bar text="Bar" />];

packages/lib/src/childQueries/findChildren/findChildren.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Baz.displayName = 'Baz';
3030
(Bar as any).isBar = true;
3131
(Baz as any).isBaz = true;
3232

33-
describe('packages/compound-component/findChildren', () => {
33+
describe('packages/lib/findChildren', () => {
3434
describe('basic functionality', () => {
3535
it('should find all children with matching static property', () => {
3636
const children = [

packages/wizard/src/Wizard/Wizard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const Wizard = CompoundComponent(
5555
);
5656

5757
/**
58-
* NB: We're intentionally do _not_ wrap the `Wizard` (or `WizardStep`) component in a container element.
58+
* NB: We intentionally do _not_ wrap the `Wizard` (or `WizardStep`) component in a container element.
5959
* This is done to ensure the Wizard is flexible, and can be rendered in any containing layout.
6060
*/
6161
return (

packages/wizard/src/WizardStep/WizardStep.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const WizardStep = CompoundSubComponent(
3636
]);
3737

3838
/**
39-
* NB: We're intentionally do _not_ wrap the WizardStep` component in a container element.
39+
* NB: We intentionally do _not_ wrap the `WizardStep` component in a container element.
4040
* This is done to ensure the Wizard is flexible, and can be rendered in any containing layout.
4141
*/
4242
return (

0 commit comments

Comments
 (0)