Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix logout #40

Merged
merged 2 commits into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions resources/js/components/pages/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
class="flex flex-col mb-6 space-y-2 w-full md:w-1/2 transition-all"
>
<p class="col-span-2">Please complete these steps in order to use the platform:</p>
<div v-if="walletAccount" class="bg-red-500 p-2 text-white rounded-md">Add a wallet account</div>
<div v-if="tokens.length" class="bg-red-500 p-2 text-white rounded-md">Create an API token</div>
<div v-if="!walletAccount" class="bg-primary-light p-2 text-white rounded-md">
1. Add a wallet account
</div>
<div v-if="!tokens?.length" class="bg-primary-light p-2 text-white rounded-md">
{{ walletAccount ? '1.' : '2.' }} Create an API token
</div>
</div>
<div class="flex flex-col space-y-8">
<div class="">
Expand Down
Loading