Skip to content

Commit

Permalink
Fixed react types v
Browse files Browse the repository at this point in the history
  • Loading branch information
Zusoy committed May 7, 2024
1 parent b9ad316 commit d3b5cf7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions apps/client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"devDependencies": {
"@testing-library/react": "^14.2.1",
"@types/react": "^18.2.42",
"@types/react": "18.2.19",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
Expand Down
2 changes: 1 addition & 1 deletion apps/client/src/widgets/Texts/Typography.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Typography as MatTypo, type TypographyProps } from '@material-tailwind/
export type Props = TypographyProps

const Typography: React.FC<Props> = ({ children, ...props }) =>
<MatTypo {...props} placeholder={undefined}>
<MatTypo {...props}>
{children}
</MatTypo>

Expand Down

0 comments on commit d3b5cf7

Please sign in to comment.