Closed Mhammad-riyaz closed 4 days ago
Fixed the bug where the "Integrate with GitHub" button in the Secret Scanning tab failed silently. Added a user feedback toast message to inform users of failures.
const generateNewIntegrationSession = async () => { const session = await createNewIntegrationSession(String(localStorage.getItem("orgData.id"))); if(session){ router.push( `https://github.com/apps/infisical-radar/installations/new?state=${session.sessionId}` ); }else{ createNotification({text : "Secret scanning is temporarily unavailable.",type:"error"}); } };
Description 📣
Fixed the bug where the "Integrate with GitHub" button in the Secret Scanning tab failed silently. Added a user feedback toast message to inform users of failures.
Type ✨
Tests 🛠️