remove "export" that's not available in raw JS

This commit is contained in:
2024-08-11 19:01:34 -06:00
parent 57fe2cbe13
commit 86063b27e8

View File

@@ -566,7 +566,7 @@ async function getNotificationCount() {
return result;
}
export async function blobToBase64String(blob) {
async function blobToBase64String(blob) {
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.onloadend = () => resolve(reader.result); // potential problem if it returns an ArrayBuffer?