Skip to content

Commit

Permalink
fix(footer): upgrade deprecated type
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Dec 17, 2024
1 parent 829dda9 commit c575eaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/utah-design-system/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type { ReactNode } from 'react';
import govOpsLogo from '../assets/govops-logo.webp';
import dnrLogo from '../assets/natural-resources-logo.webp';
import { Link } from './Link.tsx';
Expand All @@ -8,7 +9,7 @@ type FooterLinkColumn = {
links: FooterLink[];
};
export type FooterProps = {
renderAddress?: () => JSX.Element;
renderAddress?: () => ReactNode;
columnOne?: FooterLinkColumn;
columnTwo?: FooterLinkColumn;
columnThree?: FooterLinkColumn;
Expand Down

0 comments on commit c575eaf

Please sign in to comment.