fix(ui): restore singular project path helper name

This commit is contained in:
anduimagui
2026-02-27 11:51:05 +00:00
parent 5fee541d52
commit d7b2a15959

View File

@@ -168,7 +168,7 @@ function openProjectFile(
openFilePath?: (input: { path: string }) => void,
) {
if (!path) return
const file = relativizeProjectPaths(path, directory).replace(/^\//, "")
const file = relativizeProjectPath(path, directory).replace(/^\//, "")
if (!file) return
openFilePath?.({ path: file })
}