()
| 13312 | const normalized = normalizePathForComparison(filePath); |
| 13313 | // Find the original path format from selectedModels or DOM to maintain consistency |
| 13314 | let originalPath = filePath; |
| 13315 | for (const path of selectedModels) { |
| 13316 | if (normalizePathForComparison(path) === normalized) { |
| 13317 | originalPath = path; // Use existing format |
| 13318 | break; |
| 13319 | } |
| 13320 | } |
| 13321 | selectedModels.add(originalPath); |
| 13322 | return originalPath; |
| 13323 | } |
| 13324 | |
| 13325 | function removeFromSelectedModels(filePath) { |
| 13326 | const normalized = normalizePathForComparison(filePath); |
nothing calls this directly
no test coverage detected