fix: resolve type errors and lint components/routes

This commit is contained in:
Aarnav Tale 2025-01-06 08:18:46 +05:30
parent 414b95c293
commit 6745ee8529
No known key found for this signature in database
13 changed files with 63 additions and 28 deletions

View file

@ -1,12 +1,16 @@
import { cn } from '~/utils/cn';
import Link from '~/components/Link';
declare global {
const __VERSION__: string;
}
interface FooterProps {
url: string;
debug: boolean;
}
export default function Footer({ url, debug, integration }: FooterProps) {
export default function Footer({ url, debug }: FooterProps) {
return (
<footer
className={cn(