refactor: fix potential issues when converting to string [no ci]

This commit is contained in:
Aman Harwara
2023-07-31 16:29:46 +05:30
parent f24e0b0e50
commit 661fddf433
3 changed files with 4 additions and 4 deletions

View File

@@ -221,8 +221,8 @@ export const getBase64FromBlob = (blob: Blob) => {
return new Promise<string>((resolve, reject) => {
const reader = new FileReader()
reader.onloadend = () => {
if (reader.result) {
resolve(reader.result.toString())
if (reader.result && typeof reader.result === 'string') {
resolve(reader.result)
} else {
reject()
}