1) Update release note.

2) Fixed a typo. #5645
This commit is contained in:
Akshay Joshi
2022-12-14 15:56:05 +05:30
parent 6eec5c3842
commit c07053bce5
2 changed files with 5 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ export async function copyToClipboard(text) {
await navigator.clipboard.writeText(text);
} catch(err) {
/* Suppress error */
Notifier.error('Does not have clipboard acccess');
Notifier.error('Does not have clipboard access');
}
localStorage.setItem('clipboard', text);
}