diff --git a/src/components/ChangelogDialog/ChangelogDialog.tsx b/src/components/ChangelogDialog/ChangelogDialog.tsx index a57c212c..463e79b8 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.tsx +++ b/src/components/ChangelogDialog/ChangelogDialog.tsx @@ -29,6 +29,7 @@ export interface ChangelogDialogProps { loading?: boolean; error?: boolean | {title: string; description: string}; disableHeightTransition?: boolean; + className?: string; } let nextId = 1; @@ -50,6 +51,7 @@ export function ChangelogDialog({ onRetryClick, loading, error, + className, }: ChangelogDialogProps) { const idRef = React.useRef(); idRef.current = idRef.current || getNextId(); @@ -57,7 +59,7 @@ export function ChangelogDialog({ return (