Fix helper return for registration

This commit is contained in:
Brian McGonagill 2025-06-21 13:04:47 -05:00
parent cca29bc591
commit 055d574dcc

View file

@ -38,7 +38,8 @@ Template.reg.helpers({
return conf.allowReg;
}
}
sysConf();
let sysConfig = sysConf();
return sysConfig;
}
});