()
| 187 | : 'Image was too large. Double press esc to go back and try again with a smaller image.' |
| 188 | } |
| 189 | export function getRequestTooLargeErrorMessage(): string { |
| 190 | const limits = `max ${formatFileSize(PDF_TARGET_RAW_SIZE)}` |
| 191 | return getIsNonInteractiveSession() |
| 192 | ? `Request too large (${limits}). Try with a smaller file.` |
| 193 | : `Request too large (${limits}). Double press esc to go back and try with a smaller file.` |
| 194 | } |
| 195 | export const OAUTH_ORG_NOT_ALLOWED_ERROR_MESSAGE = |
| 196 | 'Your account does not have access to Code. Please run /login.' |
| 197 |
no test coverage detected