fix(server): fix import path truthiness check (#16570)

This commit is contained in:
Jonathan Jogenfors 2025-03-04 13:54:12 +01:00 committed by GitHub
parent 75c9f63757
commit 49d393216a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -121,7 +121,7 @@
};
const handleAddImportPath = () => {
if (!updateLibraryIndex || !importPathToAdd) {
if (updateLibraryIndex === null || !importPathToAdd) {
return;
}