Skip to content

Commit

Permalink
remove debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
salmma committed Nov 27, 2023
1 parent b7aef61 commit b38d4c4
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,6 @@ export class ImplementationNisqAnalyzerQpuSelectionComponent
dialogResult.awsSecretToken
);

debugger;

const qpuSelectionDto: QpuSelectionDto = {
allowedProviders: dialogResult.vendors,
circuitLanguage: this.nisqImpl.language,
Expand Down Expand Up @@ -375,7 +373,6 @@ export class ImplementationNisqAnalyzerQpuSelectionComponent
const providerTokens = new Map<string, Map<string, string>>();
const rawTokensIbmq = new Map<string, string>();
const rawTokensIonq = new Map<string, string>();
debugger;
if (vendors.includes('ibmq')) {
rawTokensIbmq.set('ibmq', ibmqToken);
providerTokens.set('ibmq', rawTokensIbmq);
Expand All @@ -386,7 +383,6 @@ export class ImplementationNisqAnalyzerQpuSelectionComponent
providerTokens.set('ionq', rawTokensIonq);
}

debugger;
// converting such that it can be delivered via HTTP
const convMap: { [props: string]: { [props: string]: string } } = {};
providerTokens.forEach((val: Map<string, string>, key: string) => {
Expand Down

0 comments on commit b38d4c4

Please sign in to comment.