Skip to content

Commit

Permalink
🐛 Rollback
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Jul 18, 2024
1 parent 3638566 commit a78e531
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion apps/magic-link/src/lib/ProviderModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const ProviderModal = () => {
const PROVIDERS = selectedCategory == "All" ? providersArray() : providersArray(selectedCategory);
const getConnectorsToDisplay = () => {
// First, check if the company selected custom connectors in the UI or not
const unwanted_connectors = transformConnectorsStatus(connectorsForProject).filter(connector => connector.status === "false");
const unwanted_connectors = transformConnectorsStatus(connectorsForProject).filter(connector => connector.status === "false");
// Filter out the providers present in the unwanted connectors array
const filteredProviders = PROVIDERS.filter(provider => {
return !unwanted_connectors.some( (unwanted) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ export class ConnectionsStrategiesController {
summary: 'Fetch credentials info needed for connections',
})
@ApiResponse({ status: 200 })
@UseGuards(JwtAuthGuard)
@Get('getCredentials')
async getCredentials(
@Query('projectId') projectId: string,
Expand Down

0 comments on commit a78e531

Please sign in to comment.