/* Copyright 2026 Element Creations Ltd. SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial Please see LICENSE files in the repository root for full details. */ import React, { useCallback } from "react"; import { Button } from "@vector-im/compound-web"; import SdkConfig from "../../../SdkConfig"; import { _t } from "../../../languageHandler"; import Modal from "../../../Modal"; import BugReportDialog, { type BugReportDialogProps } from "../dialogs/BugReportDialog"; import { BugReportEndpointURLLocal } from "../../../IConfigOptions"; /** * Renders a button to open the BugReportDialog *if* the configuration * supports it. */ export function BugReportDialogButton({ label, error, }: Pick): React.ReactElement | null { const bugReportUrl = SdkConfig.get().bug_report_endpoint_url; const onClick = useCallback(() => { Modal.createDialog(BugReportDialog, { label, error, }); }, [label, error]); if (!bugReportUrl) { return null; } return ( ); }