Feature engineering improvements #376

Merged
LukeGus merged 20 commits from feature-engineering-improvements into dev-1.8.0 2025-10-08 01:06:01 +00:00
2 changed files with 2 additions and 8 deletions
Showing only changes of commit dea1ca90b1 - Show all commits

View File

@@ -79,7 +79,8 @@ export function CredentialEditor({
].sort() as string[];
setFolders(uniqueFolders);
} catch (error) {
} catch {
// Failed to load credentials
} finally {
setLoading(false);
}
@@ -636,10 +637,6 @@ export function CredentialEditor({
form.setValue("key", null);
form.setValue("keyPassword", "");
form.setValue("keyType", "auto");
if (newAuthType === "password") {
} else if (newAuthType === "key") {
}
}}
className="flex-1 flex flex-col h-full min-h-0"
>

View File

@@ -327,7 +327,6 @@ export function FileManagerGrid({
dragState.files[0].type === "file"
) {
onFileDiff?.(dragState.files[0], targetFile);
} else {
}
setDragState({ type: "none", files: [], counter: 0 });
@@ -458,8 +457,6 @@ export function FileManagerGrid({
type: "external",
counter: prev.counter + 1,
}));
if (e.dataTransfer.items && e.dataTransfer.items.length > 0) {
}
}
},
[dragState.type],