Fixed chart rendering when using date nav buttons.

This commit is contained in:
Mike Cao 2025-06-12 23:07:25 -07:00
parent 1649992654
commit 7b5591a3ce
18 changed files with 177 additions and 320 deletions

View file

@ -1,9 +1,9 @@
import { ReactNode } from 'react';
import Link from 'next/link';
import { Button } from '@umami/react-zen';
import { Button, ButtonProps } from '@umami/react-zen';
import { useLocale } from '@/components/hooks';
export interface LinkButtonProps {
export interface LinkButtonProps extends ButtonProps {
href: string;
target?: string;
scroll?: boolean;