Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
maisamaf committed Apr 10, 2023
1 parent 2d5ae58 commit c9e7fc1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function SimpleModal() {
bgColor="white"
shadow="xl"
>
<MKBox display="flex" alginItems="center" justifyContent="space-between" p={2}>
<MKBox display="flex" alignItems="center" justifyContent="space-between" p={2}>
<MKTypography variant="h5">Your modal title</MKTypography>
<CloseIcon fontSize="medium" sx={{ cursor: "pointer" }} onClick={toggleModal} />
</MKBox>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function SimpleModal() {
bgColor="white"
shadow="xl"
>
<MKBox display="flex" alginItems="center" justifyContent="space-between" p={2}>
<MKBox display="flex" alignItems="center" justifyContent="space-between" p={2}>
<MKTypography variant="h5">Your modal title</MKTypography>
<CloseIcon fontSize="medium" sx={{ cursor: "pointer" }} onClick={toggleModal} />
</MKBox>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function FormSimple() {
</MKTypography>
</Grid>
<Grid container item xs={12} lg={7} sx={{ mx: "auto" }}>
<MKBox width="100%" component="form" method="post" autocomplete="off">
<MKBox width="100%" component="form" method="post" autoComplete="off">
<MKBox p={3}>
<Grid container spacing={3}>
<Grid item xs={12} md={6}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function FormSimple() {
</MKTypography>
</Grid>
<Grid container item xs={12} lg={7} sx={{ mx: "auto" }}>
<MKBox width="100%" component="form" method="post" autocomplete="off">
<MKBox width="100%" component="form" method="post" autoComplete="off">
<MKBox p={3}>
<Grid container spacing={3}>
<Grid item xs={12} md={6}>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/LandingPages/ContactUs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function ContactUs() {
For further questions, including partnership opportunities, please email
[email protected] or contact using our contact form.
</MKTypography>
<MKBox width="100%" component="form" method="post" autocomplete="off">
<MKBox width="100%" component="form" method="post" autoComplete="off">
<Grid container spacing={3}>
<Grid item xs={12} md={6}>
<MKInput
Expand Down

0 comments on commit c9e7fc1

Please sign in to comment.