0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 18:32:41 +00:00

Remove errant semicolon

Co-authored-by: Trevor Buckner <calculuschild@gmail.com>
This commit is contained in:
G.Ambatte
2022-04-13 14:26:25 +12:00
committed by GitHub
parent 811d1347ea
commit 5d3fe719b3

View File

@@ -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);