feat: add webhook navigation endpoint

This commit is contained in:
Rohit
2025-05-27 20:09:06 +05:30
parent 1777a598c1
commit d38a5cd39c

View File

@@ -114,6 +114,15 @@ export const Recordings = ({
preSelectedIntegrationType="airtable"
/>
);
} else if (currentPath.endsWith("/integrate/webhook")) {
return (
<IntegrationSettingsModal
isOpen={true}
handleClose={handleClose}
handleStart={() => {}}
preSelectedIntegrationType="webhook"
/>
);
} else if (currentPath.endsWith("/integrate")) {
return (
<IntegrationSettingsModal