import { waitFor } from '@/utils/waitFor'; export const waitForPromise = async (promise: Promise, ms = 1000) => { const results = await Promise.all([promise, waitFor(ms)]); return results[0]; };