altcha-org / altcha

GDPR compliant, self-hosted CAPTCHA alternative with PoW mechanism and advanced anti-spam filter.
https://altcha.org
MIT License
241 stars 5 forks source link

Typo in State.UNVERIFIED enum value #9

Closed alexbcberio closed 5 months ago

alexbcberio commented 5 months ago

The State.UNVERIFIED enum value has a typo with a value of "unverfied" instead of "unverified". Check the source code.

export enum State {
  ERROR = 'error',
  VERIFIED = 'verified',
  VERIFYING = 'verifying',
-  UNVERIFIED = 'unverfied',
+  UNVERIFIED = 'unverified',
};
ovx commented 5 months ago

Fixed in 0.1.4; thanks for reporting.