Skip to content

Commit 324d1fc

Browse files
committed
fix: issues
1 parent 1842699 commit 324d1fc

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/plugin-slots/PageBannerSlot/index.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ import { PluginSlot } from '@openedx/frontend-plugin-framework';
33
import { PageBanner } from '@openedx/paragon';
44

55
export interface PageBannerSlotProps {
6-
show?: boolean;
7-
dismissible?: boolean;
8-
onDismiss?: () => void;
9-
className?: string;
10-
children?: ReactNode;
6+
show: boolean;
7+
dismissible: boolean;
8+
onDismiss: () => void;
9+
className: string;
10+
children: ReactNode;
1111
}
1212

1313
const PageBannerSlot: React.FC<PageBannerSlotProps> = ({

0 commit comments

Comments
 (0)