From f257ddf3ff171308895bfd9857da9a93e3bac5ff Mon Sep 17 00:00:00 2001 From: Sosthene Date: Sun, 3 Aug 2025 17:00:07 +0200 Subject: [PATCH] Add verbosity --- src/front/Components/DesignSystem/Header/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/front/Components/DesignSystem/Header/index.tsx b/src/front/Components/DesignSystem/Header/index.tsx index addada55..a8b55bf9 100644 --- a/src/front/Components/DesignSystem/Header/index.tsx +++ b/src/front/Components/DesignSystem/Header/index.tsx @@ -36,6 +36,7 @@ export default function Header(props: IProps) { const loadSubscription = useCallback(async () => { const jwt = JwtService.getInstance().decodeJwt(); + console.log(jwt); const subscription = await Subscriptions.getInstance().get({ where: { office: { uid: jwt?.office_Id } } }); if (subscription[0]) { const stripeSubscription = await Stripe.getInstance().getStripeSubscriptionByUid(subscription[0].stripe_subscription_id!);