Skip to content

Commit

Permalink
[docs] Rename UserFeedBacks to UserFeedback
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrookes committed Dec 12, 2023
1 parent b4af011 commit 570d834
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/components/home/Testimonials.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Grid from '@mui/material/Grid';
import { alpha } from '@mui/material/styles';
import MuiStatistics from 'docs/src/components/home/MuiStatistics';

const UserFeedbacks = dynamic(() => import('./UserFeedbacks'));
const UserFeedback = dynamic(() => import('./UserFeedback'));

function Testimonials() {
const { ref, inView } = useInView({
Expand All @@ -30,7 +30,7 @@ function Testimonials() {
<Container sx={{ py: { xs: 8, md: 12 } }}>
<Grid container spacing={3} alignItems="center">
<Grid item xs={12} md={6} sx={{ zIndex: 1, minHeight: { xs: 400, sm: 307, lg: 355 } }}>
{inView && <UserFeedbacks />}
{inView && <UserFeedback />}
</Grid>
<MuiStatistics />
</Grid>
Expand Down
File renamed without changes.

0 comments on commit 570d834

Please sign in to comment.