···33// Commit: 3e9dab413f4eda8d6bce565388c5ddb7aeff9f7e
44// Most of the changes are just trimming it down to only include the browser
55// history implementation.
66-import { nanoid } from 'nanoid/non-secure';
7687export type Action = 'traverse' | 'push' | 'replace' | 'update';
98···327326};
328327329328const createKey = () => {
330330- return nanoid();
329329+ return crypto.randomUUID();
331330};
332331333332/**