function genId()

in src/hooks/use-toast.ts [27:30]


function genId() {
  count = (count + 1) % Number.MAX_SAFE_INTEGER
  return count.toString()
}