Skip to content

Commit 586b92d

Browse files
committed
cleanup
1 parent de5fdd2 commit 586b92d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/lib/hooks/robot-clients.svelte.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,13 @@ export const provideRobotClientsContext = (
9898

9999
connectionStatus[partID] = MachineConnectionEvent.CONNECTED;
100100
} catch (error) {
101-
console.error(error);
101+
errors[partID] = error as Error;
102102
connectionStatus[partID] = MachineConnectionEvent.DISCONNECTED;
103103
}
104104
};
105105

106106
$effect(() => {
107107
const configs = dialConfigs();
108-
console.log(configs);
109108

110109
const { added, removed, unchanged } = comparePartIds(
111110
Object.keys(configs),

0 commit comments

Comments
 (0)