@playpilot/tpi 8.29.3-beta.2 → 8.29.3

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.29.3-beta.2",
3
+ "version": "8.29.3",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite dev",
package/src/lib/modal.ts CHANGED
@@ -65,8 +65,6 @@ function addModalToList({ type = 'title', injection = null, data, scrollPosition
65
65
 
66
66
  /** Unmount the last modal is the list of modals but keep it in the list of active modals */
67
67
  export function closeCurrentModal(outro: boolean = true): void {
68
- console.trace('closeCurrentModal')
69
-
70
68
  if (!modals.length) return
71
69
 
72
70
  saveCurrentModalScrollPosition()
@@ -82,8 +80,6 @@ export function destroyCurrentModal(outro: boolean = true): void {
82
80
  }
83
81
 
84
82
  export function destroyAllModals(outro: boolean = true): void {
85
- console.trace('destroyAllModals')
86
-
87
83
  closeCurrentModal(outro)
88
84
 
89
85
  while (modals.length > 0) modals.pop()