Skip to content

Commit

Permalink
fix loader
Browse files Browse the repository at this point in the history
  • Loading branch information
zlayine committed Oct 9, 2023
1 parent ff284d6 commit 1d112db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/components/pages/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const tokenName = ref();
const walletAccount = ref(publicKeyToAddress(appStore.user?.account));
const enableTokenCreate = ref(false);
const enableAccountModify = ref(false);
const loading = ref(true);
const loading = ref(appStore.user ? false : true);

const tokens = computed(() => appStore.user?.apiTokens);

Expand Down

0 comments on commit 1d112db

Please sign in to comment.