Skip to content

Commit 140fab3

Browse files
fix: rm unsed component, prop name correction
1 parent eedb936 commit 140fab3

File tree

2 files changed

+3
-27
lines changed

2 files changed

+3
-27
lines changed

src/components/footer/FooterLegal.tsx

Lines changed: 0 additions & 24 deletions
This file was deleted.

src/components/footer/FooterPublic.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ import { twMerge } from "tailwind-merge";
44
import clsx from "clsx";
55

66
export interface FooterPublicProps extends FooterPartsPrimitiveProps<HTMLAnchorElement> {
7-
dshboardLink: string;
7+
dashboardLink: string;
88
}
99

1010

11-
const FooterPublic = ({ className, dshboardLink, ...rest }: FooterPublicProps) => {
11+
const FooterPublic = ({ className, dashboardLink, ...rest }: FooterPublicProps) => {
1212
return (
1313
<a
14-
href={dshboardLink}
14+
href={dashboardLink}
1515
target="_blank"
1616
rel="noreferrer"
1717
className={twMerge(clsx('leading-none md:leading-tight text-sm text-gray-500 dark:text-gray-400 underline', className))}

0 commit comments

Comments
 (0)