浏览代码

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) {