@playpilot/tpi 8.37.0 → 8.37.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playpilot/tpi",
3
- "version": "8.37.0",
3
+ "version": "8.37.1",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
package/src/lib/modal.ts CHANGED
@@ -99,8 +99,6 @@ export function goBackToPreviousModal(): void {
99
99
  const previousModal = modals.pop()
100
100
  if (!previousModal) return
101
101
 
102
- console.log(previousModal)
103
-
104
102
  openModal({ ...previousModal })
105
103
  }
106
104