Skip to content

Commit

Permalink
Get rid of print statements.
Browse files Browse the repository at this point in the history
No-Issue

Signed-off-by: James Tanner <tanner.jc@gmail.com>
  • Loading branch information
jctanner committed Sep 21, 2023
1 parent d29d730 commit d348c4e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export class LegacyNamespaceListItem extends React.Component<LegacyNamespaceProp
});

const provider_details = getProviderInfo(namespace);
console.log('components.legacy-namespace-list.legacy-namespace-item.LegacyNamespaceListItem', provider_details);

const cells = [];

Expand Down
1 change: 0 additions & 1 deletion src/containers/legacy-namespaces/legacy-namespace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,6 @@ class LegacyNamespace extends React.Component<
});

const provider = getProviderInfo(this.state.namespace);
console.log('containers.legacy-namespaces.legacy-namespace.LegacyNamespace', provider);

if (this.state.namespace !== undefined) {
infocells.push(
Expand Down
2 changes: 1 addition & 1 deletion src/utilities/legacy-namespace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function getProviderInfo(data) {
let provider = null;

if (data.summary_fields.hasOwnProperty('provider_namespace')) {
// roll summary
// role summary
provider = data.summary_fields.provider_namespace;
} else if (data.summary_fields.hasOwnProperty('provider_namespaces')) {
// legacy namespace summary
Expand Down

0 comments on commit d348c4e

Please sign in to comment.