remove console logs

This commit is contained in:
2024-01-22 12:53:59 +01:00
parent bf8a458b5f
commit dc88e9f2cc
5 changed files with 3 additions and 11 deletions

View File

@@ -150,7 +150,7 @@
id="avatar-menu"
/>
<!-- TODO: if user has donator, display heart indicator-->
{#if $currentUser && $currentUser.id == 1001}
{#if $currentUser && $currentUser.donor}
<Indicator
class="pointer-events-none"
color="red"

View File

@@ -1,5 +1,6 @@
export type User = {
id: number;
donor: boolean;
name: string;
email: string;
};