diff --git a/web/src/components/embed-container.tsx b/web/src/components/embed-container.tsx index 6d31384d68..731873cce0 100644 --- a/web/src/components/embed-container.tsx +++ b/web/src/components/embed-container.tsx @@ -24,6 +24,7 @@ type EmbedContainerProps = { title: string; avatar?: string; handleReset?(): void; + hideReset?: boolean; } & PropsWithChildren; export function EmbedContainer({ @@ -31,6 +32,7 @@ export function EmbedContainer({ avatar, children, handleReset, + hideReset = false, }: EmbedContainerProps) { const appConf = useFetchAppConf(); @@ -54,16 +56,18 @@ export function EmbedContainer({