This commit is contained in:
Half-Shot 2026-01-16 10:00:41 +00:00
parent 54768df87a
commit 7a276e21cd

View File

@ -423,7 +423,7 @@ export async function submitFeedback(
): Promise<void> {
const bugReportEndpointUrl = SdkConfig.get().bug_report_endpoint_url;
if (!bugReportEndpointUrl || bugReportEndpointUrl === "local") {
throw Error("Bug report URL is not set or local");
throw new Error("Bug report URL is not set or local");
}
let version: string | undefined;
try {