Skip to content

Commit

Permalink
remove console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonhyejin committed Jan 24, 2025
1 parent 9f7f298 commit 946854c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ export default function MLModelSummary() {
const baseEntity = useBaseEntity<GetDataProcessInstanceQuery>();
const dpi = baseEntity?.dataProcessInstance;

console.log('dpi', dpi);

const formatDate = (timestamp?: number) => {
if (!timestamp) return '-';
const milliseconds = timestamp < 10000000000 ? timestamp * 1000 : timestamp;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ export default function MLModelSummary() {
const model = baseEntity?.mlModel;
const entityRegistry = useEntityRegistry();

Check warning on line 50 in datahub-web-react/src/app/entity/mlModel/profile/MLModelSummary.tsx

View check run for this annotation

Codecov / codecov/patch

datahub-web-react/src/app/entity/mlModel/profile/MLModelSummary.tsx#L50

Added line #L50 was not covered by tests

console.log('model', model);

const propertyTableColumns = [
{
title: 'Name',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,6 @@ export default function MLGroupModels() {
return new Date(milliseconds).toISOString().slice(0, 19).replace('T', ' ');
};

console.log('modelGroup', modelGroup);
console.log('models', models);

const columns = [
{
title: 'Name',
Expand Down

0 comments on commit 946854c

Please sign in to comment.