import { useFetchUserInfo } from '@/hooks/use-user-setting-request'; import { PropsWithChildren } from 'react'; export function SharedBadge({ children }: PropsWithChildren) { const { data: userInfo } = useFetchUserInfo(); if (typeof children === 'string' && userInfo.nickname === children) { return null; } return {children}; }