Skip to content

Commit 6837cc3

Browse files
committed
Fix no console.
1 parent f5308f2 commit 6837cc3

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

dash/dash-renderer/src/actions/api.js

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ export default function apiThunk(endpoint, method, store, id, body) {
6060
// fetch rejection - this means the request didn't return,
6161
// we don't get here from 400/500 errors, only network
6262
// errors or unresponsive servers.
63+
// eslint-disable-next-line no-console
6364
console.log('fetch error', res);
6465
setConnectionStatus(false);
6566
return;

dash/dash-renderer/src/actions/callbacks.ts

-1
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,6 @@ export function executeCallback(
650650
let lastError: any;
651651

652652
const additionalArgs: [string, string, boolean?][] = [];
653-
console.log(cb.callback.output, getState().callbackJobs);
654653
values(getState().callbackJobs).forEach(
655654
(job: CallbackJobPayload) => {
656655
if (cb.callback.output === job.output) {

0 commit comments

Comments
 (0)