Skip to content

Commit

Permalink
[BpkDialog]: Fix optional modal prop (#3471)
Browse files Browse the repository at this point in the history
  • Loading branch information
olliecurtis authored May 24, 2024
1 parent 2c22d32 commit 5029705
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bpk-component-dialog/src/common-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export const HEADER_ICON_TYPES = {

export type DialogInnerProps = {
ariaLabel: string;
ariaModal: boolean;
id: string;
children: ReactNode;
dialogRef: (ref: HTMLElement | null | undefined) => void;
Expand All @@ -37,6 +36,7 @@ export type DialogInnerProps = {
* The "pagewrap" element id is a convention we use internally at Skyscanner. In most cases it should "just work".
*/
getApplicationElement: () => HTMLElement | null;
ariaModal?: boolean;
className?: string;
contentClassName?: string;
flare?: boolean;
Expand Down

0 comments on commit 5029705

Please sign in to comment.