Skip to content

Commit

Permalink
refactor(LoginButtons): Add return type annotation to LoginButtons co…
Browse files Browse the repository at this point in the history
…mponent
  • Loading branch information
AlbinoGeek committed Feb 21, 2024
1 parent 09f9a68 commit 833198b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/LoginButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type Props = {
onDontClick?: () => void
}

export default function LoginButtons(props: Props) {
export default function LoginButtons(props: Props): JSX.Element {
const { onDontClick } = props

return (
Expand Down

0 comments on commit 833198b

Please sign in to comment.