fix: API_KEY is no longer required for login to work

This commit is contained in:
Aarnav Tale 2024-05-01 02:43:44 -04:00
parent a57e777a6b
commit a63f4e4d52
No known key found for this signature in database
8 changed files with 39 additions and 18 deletions

View file

@ -12,7 +12,7 @@ export class HeadscaleError extends Error {
export class FatalError extends Error {
constructor() {
super('The Headscale server is not accessible or the API_KEY is invalid.')
super('The Headscale server is not accessible or the supplied API key is invalid')
this.name = 'FatalError'
}
}