Skip to content

Commit

Permalink
remove logs
Browse files Browse the repository at this point in the history
  • Loading branch information
hardingjam committed Jan 9, 2025
1 parent a491f7e commit 495a474
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,10 @@
let hasDeserialized = false;
$: if (filename) {
console.log('filename updated', filename);
loadStrategy(filename);
}
$: if (selectedDeployment) {
console.log('selectedDeployment updated', selectedDeployment);
handleDeploymentChange(selectedDeployment as string);
}
Expand All @@ -83,13 +81,11 @@
}
$: if (selectTokens) {
console.log('selectTokens updated', selectTokens);
getTokenInfos();
getDeposits();
}
$: if (gui) {
console.log('gui updated', gui);
try {
const serializedState = gui.serializeState();
$page.url.searchParams.set('gui', serializedState);
Expand Down Expand Up @@ -150,7 +146,6 @@
try {
gui = await DotrainOrderGui.chooseDeployment(dotrain, deployment);
if (stateFromUrl && !hasDeserialized) {
console.log('deserializing state');
gui.deserializeState(stateFromUrl);
hasDeserialized = true;
}
Expand Down

0 comments on commit 495a474

Please sign in to comment.