{"record":{"id":"242c09c1a417cbae","repo":"diegosouzapw/OmniRoute","slug":"failed-to-remove-exact-alias","errorCode":null,"errorMessage":"Failed to remove exact alias","messagePattern":"Failed to remove exact alias","errorType":"exception","errorClass":"Error","httpStatus":null,"severity":"error","filePath":"src/app/(dashboard)/dashboard/settings/components/ModelAliasesUnified.tsx","lineNumber":97,"sourceCode":"      setToValue(\"\");\n      showStatus(\"success\", translateOrFallback(t, \"saved\", \"Saved\"));\n    } catch (error) {\n      console.error(\"Failed to save exact alias:\", error);\n      showStatus(\"error\", translateOrFallback(t, \"errorOccurred\", \"An error occurred\"));\n    } finally {\n      setSaving(false);\n    }\n  };\n\n  const removeExactAlias = async (from: string) => {\n    setSaving(true);\n    try {\n      const res = await fetch(\"/api/settings/model-aliases\", {\n        method: \"DELETE\",\n        headers: { \"Content-Type\": \"application/json\" },\n        body: JSON.stringify({ from }),\n      });\n      if (!res.ok) throw new Error(\"Failed to remove exact alias\");\n      const data = await res.json();\n      setCustomAliases(data.custom || {});\n      showStatus(\"success\", translateOrFallback(t, \"saved\", \"Saved\"));\n    } catch (error) {\n      console.error(\"Failed to remove exact alias:\", error);\n      showStatus(\"error\", translateOrFallback(t, \"errorOccurred\", \"An error occurred\"));\n    } finally {\n      setSaving(false);\n    }\n  };\n\n  const addWildcardAlias = async () => {\n    if (!fromValue.trim() || !toValue.trim()) return;\n    setSaving(true);\n    try {\n      const settingsRes = await fetch(\"/api/settings\", { cache: \"no-store\" });\n      if (!settingsRes.ok) throw new Error(\"Failed to load current settings\");\n      const settingsData = await settingsRes.json();","sourceCodeStart":79,"sourceCodeEnd":115,"githubUrl":"https://github.com/diegosouzapw/OmniRoute/blob/a179ffed5bb2e0b883b9ae7214ce8717b2a94c4d/src/app/(dashboard)/dashboard/settings/components/ModelAliasesUnified.tsx#L79-L115","documentation":"Error \"Failed to remove exact alias\" thrown in diegosouzapw/OmniRoute.","triggerScenarios":"Thrown at src/app/(dashboard)/dashboard/settings/components/ModelAliasesUnified.tsx:97 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"a179ffed5bb2e0b883b9ae7214ce8717b2a94c4d","analyzedAt":"2026-08-25T18:35:09.898Z","schemaVersion":2},"datasetVersion":"2026-08-25T21:54:21.419Z"}