Remove client-side isLoggedIn value
[ProtonMail-WebClient.git] / packages / docs-core / lib / Util / GetErrorString.ts
blob3c5d3c6c3598c7000a4f831a1693ddf4526d83cc
1 import { getApiError } from '@proton/shared/lib/api/helpers/apiErrorHelper'
3 export function getErrorString(error: any): string | undefined {
4   if ('message' in error && error.message && typeof error.message === 'string') {
5     return error.message
6   } else if (typeof error === 'string') {
7     return error
8   } else {
9     const apiError = getApiError(error)
10     if (apiError.message) {
11       return apiError.message
12     }
14     return undefined
15   }