Skip to content

Commit

Permalink
refactor(member): linker component to make target prop optional (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
gwansikk committed Apr 9, 2024
1 parent 126b6c6 commit f74f638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/member/src/components/common/Linker/Linker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Link } from 'react-router-dom';
interface LinkerProps extends PropsWithChildren {
to: string | Partial<Location>;
className?: string;
target: React.HTMLAttributeAnchorTarget;
target?: React.HTMLAttributeAnchorTarget;
}

const Linker = ({ to, target, className, children }: LinkerProps) => {
Expand Down

0 comments on commit f74f638

Please sign in to comment.