소스 검색

small typo fix (#337)

Samyak Bakliwal 5 년 전
부모
커밋
cdf0a13f77
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      server/handlers/auth.ts

+ 1 - 1
server/handlers/auth.ts

@@ -38,7 +38,7 @@ const authenticate = (
       }
 
       if (user && user.banned) {
-        throw new CustomError("Your are banned from using this website.", 403);
+        throw new CustomError("You're banned from using this website.", 403);
       }
 
       if (user) {