export const copyToClipboard = async (value: string): Promise => { await globalThis.navigator?.clipboard?.writeText(value) }