Skip to content

Commit 78c3535

Browse files
authored
Fix linting issue (#2493)
## Summary: [fix-lint] Fix lint. This wasn't caught when the component was marked with `@deprecated` since the CI check only lints files that were changed in the PR Context: https://github.com/Khan/wonder-blocks/pull/2481/files#r1974094102 Issue: WB-XXXX ## Test plan: Running `pnpm lint` passes Author: beaesguerra Reviewers: beaesguerra, marcysutton Required Reviewers: Approved By: marcysutton Checks: ✅ 21 checks were successful, ⏭️ 4 checks have been skipped, ⏹️ 7 checks were cancelled, ⌛ 1 check is pending Pull Request URL: #2493
1 parent 93e5c22 commit 78c3535

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.changeset/forty-items-itch.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

packages/wonder-blocks-form/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import Choice from "./components/choice";
33
import CheckboxGroup from "./components/checkbox-group";
44
import RadioGroup from "./components/radio-group";
55
import TextField from "./components/text-field";
6+
// eslint-disable-next-line import/no-deprecated
67
import LabeledTextField from "./components/labeled-text-field";
78
import TextArea from "./components/text-area";
89

@@ -12,6 +13,7 @@ export {
1213
CheckboxGroup,
1314
RadioGroup,
1415
TextField,
16+
// eslint-disable-next-line import/no-deprecated
1517
LabeledTextField,
1618
TextArea,
1719
};

0 commit comments

Comments
 (0)