-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat(hosting-plan): implement radio buttons and modals #120
Conversation
mateuszRybczonek
commented
Nov 7, 2023
Deploying with Cloudflare Pages
|
src/components/PrimaryLayout.vue
Outdated
@@ -82,8 +83,12 @@ onMounted(async () => { | |||
isLoading.value = false | |||
} | |||
|
|||
await nextTick(() => { | |||
if (!userStore.holoFuel.nickname) { | |||
console.log('nickname outside try', userStore.holoFuel.nickname) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the back-end we have a logger so we avoid doing console log. If you are not following similar rules just ignore these comments
src/components/PrimaryLayout.vue
Outdated
console.log('nickname outside try', userStore.holoFuel.nickname) | ||
|
||
await nextTick(() => { | ||
console.log('nickname outside try - nextTick', userStore.holoFuel.nickname) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
console.log, same as above