Merge pull request #3708 from sanjaikumar-bruno/handle-invalid-auth-in-pm-export

fix: handle unsupported auth mode by returning 'noauth' type
This commit is contained in:
lohit
2025-01-02 12:48:57 +05:30
committed by GitHub

View File

@@ -291,8 +291,9 @@ export const exportCollection = (collection) => {
};
}
default: {
console.error('Unsupported auth mode:', itemAuth.mode);
return null;
return {
type: 'noauth'
};
}
}
};