[FIX] explorer에서 대문자 확장자 검색 안되는거 수정

This commit is contained in:
ChangHangeol 2025-03-02 13:06:01 +09:00
parent af9ee84365
commit 2985af3924

View file

@ -10,7 +10,7 @@ export const getCSVFileStructure = async (app: App): Promise<Record<string, stri
// Vault 내의 모든 파일 순회
files.forEach((file: TFile) => {
if (file.extension === "CSV") {
if (file.extension === "csv") {
if(file.parent) {
const folderPath = file.parent.path;
if (!CSVStructure[folderPath])