No longer mark environments as external in Git

This commit is contained in:
Gregory Schier
2025-05-17 06:06:36 -07:00
parent be82b67ed3
commit 3e9037f70a

View File

@@ -70,8 +70,6 @@ export function GitCommitDialog({ syncDir, onDone, workspace }: Props) {
allEntries.push(entry);
if (entry.next == null && entry.prev == null) {
externalEntries.push(entry);
} else if (entry.next?.model === 'environment' || entry.prev?.model === 'environment') {
externalEntries.push(entry);
} else {
yaakEntries.push(entry);
}