Skip to content

Commit

Permalink
✏️ Remove console.log not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed Jun 25, 2024
1 parent a48a206 commit 33441cc
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ export function ConnectorDisplay({ item }: ItemDisplayProps) {
});
}
form.reset();
console.log(values)
break;

case AuthStrategy.api_key:
Expand Down Expand Up @@ -255,7 +254,6 @@ export function ConnectorDisplay({ item }: ItemDisplayProps) {
});
}
form.reset();
console.log(values)
break;

case AuthStrategy.basic:
Expand Down Expand Up @@ -332,7 +330,6 @@ export function ConnectorDisplay({ item }: ItemDisplayProps) {
});
}
form.reset();
console.log(values)
break;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export default function ConnectionTable() {
}

const linkedConnections = (filter: string) => connections?.filter((connection) => connection.status == filter);
//console.log("connections are => "+ JSON.stringify(connections))
const ts = connections?.map((connection) => ({
organisation: nameOrg,
app: connection.provider_slug,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ interface IUpdateConnectionStrategyDto {
const useUpdateConnectionStrategy = () => {
const update = async (connectionStrategyData: IUpdateConnectionStrategyDto) => {
if(connectionStrategyData.updateToggle) {
console.log(connectionStrategyData.id_cs)
const response = await fetch(`${config.API_URL}/connections-strategies/toggle`, {
method: 'POST',
body: JSON.stringify({id_cs:connectionStrategyData.id_cs}),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,6 @@ export class ConnectionsStrategiesService {
async getCredentials(projectId: string, type: string) {
try {
const isCustomCred = await this.isCustomCredentials(projectId, type);
console.log('inside get credentials...');
const provider = extractProvider(type);
const vertical = extractVertical(type);
//TODO: extract sofwtaremode
Expand Down Expand Up @@ -341,7 +340,6 @@ export class ConnectionsStrategiesService {
authStrategy,
SoftwareMode.cloud,
);
console.log('CONNECTION STRATEGY result is' + JSON.stringify(res));
return res;
}
} catch (error) {
Expand Down

0 comments on commit 33441cc

Please sign in to comment.