We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0abc6bd commit abeb987Copy full SHA for abeb987
client/src/App.vue
@@ -33,6 +33,7 @@ export default defineComponent({
33
const checkLogin = async () => {
34
if (oauthClient.isLoggedIn) {
35
loginText.value = "Logout";
36
+ await loadConfiguration();
37
await loadCurrentUser();
38
await loadReviewerMaterials();
39
if (sharedList.value.length === 0) {
@@ -53,7 +54,6 @@ export default defineComponent({
53
54
}
55
};
56
onMounted(async () => {
- await loadConfiguration();
57
checkLogin();
58
});
59
router.afterEach((guard) => {
0 commit comments