fix: remove console log

This commit is contained in:
DecDuck
2026-01-19 17:31:25 +11:00
parent 2f0ed58cb3
commit dad3487be6
-1
View File
@@ -39,7 +39,6 @@ const stack = useModalStack();
async function handleCallback(modalIdx: number, event: string, args: any[]) { async function handleCallback(modalIdx: number, event: string, args: any[]) {
const modal = stack.value[modalIdx]; const modal = stack.value[modalIdx];
console.log(modal);
const close = () => { const close = () => {
stack.value.splice(modalIdx, 1); stack.value.splice(modalIdx, 1);
}; };