Skip to content

Commit

Permalink
fix: not being able to Follow/Save/Report projects (#2173)
Browse files Browse the repository at this point in the history
* fix: not being able to Follow/Save/Report projects

* fix lint
  • Loading branch information
ToBinio authored Aug 18, 2024
1 parent 06f2340 commit bb3ce9f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/src/layouts/default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ const auth = await useAuth();
const user = ref();
if (import.meta.client) {
user.value = await useUser();
user.value = (await useUser()).value;
}
const cosmetics = useCosmetics();
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/pages/[type]/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -1135,7 +1135,7 @@ const config = useRuntimeConfig();
const auth = await useAuth();
const user = ref();
if (import.meta.client) {
user.value = await useUser();
user.value = (await useUser()).value;
}
const cosmetics = useCosmetics();
Expand Down
4 changes: 2 additions & 2 deletions apps/frontend/src/pages/settings/billing/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
/>
<NewModal ref="addPaymentMethodModal">
<template #title>
<span class="text-contrast text-lg font-extrabold">
<span class="text-lg font-extrabold text-contrast">
{{ formatMessage(messages.paymentMethodTitle) }}
</span>
</template>
Expand Down Expand Up @@ -242,7 +242,7 @@
<PayPalIcon v-else-if="method.type === 'paypal'" class="h-8 w-8" />
<div class="flex flex-col">
<div class="flex items-center gap-2">
<div class="text-contrast font-bold">
<div class="font-bold text-contrast">
<template v-if="method.type === 'card'">
{{
formatMessage(messages.paymentMethodCardDisplay, {
Expand Down

0 comments on commit bb3ce9f

Please sign in to comment.