From 5d3fe719b32e0fd45922ad6002c312628c31c322 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Wed, 13 Apr 2022 14:26:25 +1200 Subject: [PATCH] Remove errant semicolon Co-authored-by: Trevor Buckner --- client/homebrew/navbar/account.navitem.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/homebrew/navbar/account.navitem.jsx b/client/homebrew/navbar/account.navitem.jsx index a1a739005..3640a81a5 100644 --- a/client/homebrew/navbar/account.navitem.jsx +++ b/client/homebrew/navbar/account.navitem.jsx @@ -31,7 +31,7 @@ const Account = createClass({ localLogin : async function(){ const username = prompt('Enter username:'); - if(!username) {return;}; + if(!username) {return;} const expiry = new Date; expiry.setFullYear(expiry.getFullYear() + 1);