@tscircuit/cli 0.0.40 → 0.0.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -39,7 +39,6 @@ export const ExampleContentView = () => {
39
39
 
40
40
  const itemHeight =
41
41
  viewMode === "split" && splitMode === "vertical" ? halfHeight : editorHeight
42
- console.log(pkg)
43
42
 
44
43
  return (
45
44
  <div
@@ -75,7 +74,7 @@ export const ExampleContentView = () => {
75
74
  )}
76
75
  {pkg && (viewMode === "schematic" || viewMode === "split") && (
77
76
  <Schematic
78
- key={pkg?.last_updated_at}
77
+ key={`sch-${pkg?.last_updated_at}`}
79
78
  style={{ height: itemHeight }}
80
79
  soup={pkg.tscircuit_soup}
81
80
  showTable={false}
@@ -83,7 +82,7 @@ export const ExampleContentView = () => {
83
82
  )}
84
83
  {pkg && (viewMode === "pcb" || viewMode === "split") && (
85
84
  <PCBViewer
86
- key={pkg?.last_updated_at}
85
+ key={`pcb-${pkg?.last_updated_at}`}
87
86
  height={itemHeight}
88
87
  soup={pkg.tscircuit_soup}
89
88
  />