/* eslint-disable canonical/id-match */ 'use client'; import { LinkButton } from './link-button'; import { useCustomerQuery } from '@/hooks/api/customers'; import { Enum_Customer_Role } from '@repo/graphql/types'; export function LinksCard() { const { data: { customer } = {} } = useCustomerQuery(); if (customer?.role === Enum_Customer_Role.Client) return null; return (
); }