diff --git a/components/Dialog.tsx b/components/Dialog.tsx
index f4ed6a19..37987331 100644
--- a/components/Dialog.tsx
+++ b/components/Dialog.tsx
@@ -18,13 +18,19 @@ export const DialogContent = React.forwardRef
+ ref={forwardedRef}
+ >
{children}
)
);
-export function DialogHeader({ title, subtitle }: { title: string; subtitle: string }) {
+type DialogHeaderProps = {
+ title: React.ReactElement | string;
+ subtitle: React.ReactElement | string;
+};
+
+export function DialogHeader({ title, subtitle }: DialogHeaderProps) {
return (
diff --git a/pages/integrations/index.tsx b/pages/integrations/index.tsx
index 572a2bf8..75657eed 100644
--- a/pages/integrations/index.tsx
+++ b/pages/integrations/index.tsx
@@ -170,7 +170,8 @@ export default function Home({ integrations }: Props) {
@@ -275,7 +276,8 @@ export default function Home({ integrations }: Props) {
return (
@@ -317,11 +321,25 @@ export default function Home({ integrations }: Props) {
return (
+ }
/>
{addAppleError && (
@@ -339,14 +357,16 @@ export default function Home({ integrations }: Props) {
{
setIsAddAppleIntegrationDialogOpen(false);
}}
- asChild>
+ asChild
+ >