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: { default: {
console.error('Unsupported auth mode:', itemAuth.mode); return {
return null; type: 'noauth'
};
} }
} }
}; };