Skip to content

Commit a3b8040

Browse files
evwilkinclaude
andcommitted
fix: lint formatting fixes from merge
Autoformatted interface extends declarations in DatePicker and Tab after merging upstream/main. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f32df6b commit a3b8040

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/react-core/src/components/DatePicker/DatePicker.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ export interface DatePickerRequiredObject {
2424
/** The main date picker component. */
2525

2626
export interface DatePickerProps
27-
extends
28-
CalendarFormat,
27+
extends CalendarFormat,
2928
Omit<React.HTMLProps<HTMLInputElement>, 'onChange' | 'onFocus' | 'onBlur' | 'disabled' | 'ref'> {
3029
/** The container to append the menu to. Defaults to 'inline'.
3130
* If your menu is being cut off you can append it to an element higher up the DOM tree.

packages/react-core/src/components/Tabs/Tab.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import RhMicronsCloseIcon from '@patternfly/react-icons/dist/esm/icons/rh-micron
99
import { TabAction } from './TabAction';
1010

1111
export interface TabProps
12-
extends Omit<React.HTMLProps<HTMLAnchorElement | HTMLButtonElement>, 'title' | 'action'>, OUIAProps {
12+
extends Omit<React.HTMLProps<HTMLAnchorElement | HTMLButtonElement>, 'title' | 'action'>,
13+
OUIAProps {
1314
/** content rendered inside the Tab content area. */
1415
children?: React.ReactNode;
1516
/** additional classes added to the Tab */

0 commit comments

Comments
 (0)