Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import { useTranslate } from '../localization/useTranslate.js';
import './SlideDialog.css';

export interface SlideDialogProps {

Check failure on line 19 in webapp/packages/core-blocks/src/SlideDialog/SlideDialog.tsx

View workflow job for this annotation

GitHub Actions / Frontend / Lint

Interface name `SlideDialogProps` must match the RegExp: /^I[A-Z]/u
open: boolean;
onClose: () => void;
children: React.ReactNode;
Expand Down Expand Up @@ -56,7 +56,7 @@
className="dbv-slide-dialog__close-btn"
onClick={onClose}
>
<Icon name="cross" viewBox="0 0 24 24" />
<Icon className="tw:size-4.5" name="cross" viewBox="0 0 24 24" />
</IconButton>
<Loader className="dbv-slide-dialog__loader" suspense>
{children}
Expand Down
Loading