Преглед на файлове

fix: preserve original filename case in handelize (MEMORY.md not memory.md)

Alexei Ledenev преди 1 месец
родител
ревизия
72f2dd1fe5
променени са 1 файла, в които са добавени 0 реда и са изтрити 1 реда
  1. 0 1
      src/store.ts

+ 0 - 1
src/store.ts

@@ -1595,7 +1595,6 @@ export function handelize(path: string): string {
 
   const result = path
     .replace(/___/g, '/')       // Triple underscore becomes folder separator
-    .toLowerCase()
     .split('/')
     .map((segment, idx, arr) => {
       const isLastSegment = idx === arr.length - 1;