remove logs
This commit is contained in:
parent
316e4ab50c
commit
7118a597f1
|
@ -37,7 +37,6 @@ export default class NoInformationAtAllProblem extends Problem {
|
||||||
|
|
||||||
if (
|
if (
|
||||||
this.getMarkedClusters().some((cluster) => {
|
this.getMarkedClusters().some((cluster) => {
|
||||||
console.log(cluster);
|
|
||||||
return cluster.hasMarkedCookies();
|
return cluster.hasMarkedCookies();
|
||||||
})
|
})
|
||||||
) {
|
) {
|
||||||
|
|
|
@ -12,7 +12,6 @@ export default function useSurvey(
|
||||||
const [survey, setSurvey] = React.useState<Survey.Model>(null);
|
const [survey, setSurvey] = React.useState<Survey.Model>(null);
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
const model = generateSurveyQuestions(clusters);
|
const model = generateSurveyQuestions(clusters);
|
||||||
console.log(model);
|
|
||||||
const survey = new Survey.Model(model);
|
const survey = new Survey.Model(model);
|
||||||
survey.onProcessTextValue.add(function (
|
survey.onProcessTextValue.add(function (
|
||||||
sender: Survey.SurveyModel,
|
sender: Survey.SurveyModel,
|
||||||
|
|
|
@ -119,10 +119,6 @@ export default function StolenDataCluster({
|
||||||
const fullHosts = cluster.getFullHosts();
|
const fullHosts = cluster.getFullHosts();
|
||||||
const [version] = useEmitter(cluster);
|
const [version] = useEmitter(cluster);
|
||||||
|
|
||||||
/* console.log('Stolen data cluster!', shorthost, refreshToken); */
|
|
||||||
|
|
||||||
console.log(cluster.getMarkedEntries());
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="stolen-data-cluster-container">
|
<div className="stolen-data-cluster-container">
|
||||||
<header className="domains-container">
|
<header className="domains-container">
|
||||||
|
|
|
@ -91,9 +91,6 @@ export default class ExtendedRequest {
|
||||||
this.url = data.url;
|
this.url = data.url;
|
||||||
this.shorthost = getshorthost(data.url);
|
this.shorthost = getshorthost(data.url);
|
||||||
this.requestBody = ((data as any).requestBody as undefined | RequestBody) || {};
|
this.requestBody = ((data as any).requestBody as undefined | RequestBody) || {};
|
||||||
if (this.url.includes('criteo')) {
|
|
||||||
console.log(this);
|
|
||||||
}
|
|
||||||
ExtendedRequest.by_id[data.requestId] = this;
|
ExtendedRequest.by_id[data.requestId] = this;
|
||||||
|
|
||||||
this.data = Object.assign({}, data);
|
this.data = Object.assign({}, data);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user