* Gets current teleport errors that need to be resolved * @returns Set of teleport error types that need to be handled
()
| 173 | * @returns Set of teleport error types that need to be handled |
| 174 | */ |
| 175 | function _temp() { |
| 176 | gracefulShutdownSync(0); |
| 177 | } |
| 178 | export async function getTeleportErrors(): Promise<Set<TeleportLocalErrorType>> { |
| 179 | const errors = new Set<TeleportLocalErrorType>(); |
| 180 | const [needsLogin, isGitClean] = await Promise.all([checkNeedsClaudeAiLogin(), checkIsGitClean()]); |
nothing calls this directly
no test coverage detected