Skip to content

Commit

Permalink
fix: prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-at-airwalk committed Jun 16, 2024
1 parent 74d4db7 commit ff42de9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
"error",
{
"singleQuote": true,
"jsxSingleQuote": true,
"endOfLine": "auto"
}
], // Avoid conflict rule between Prettier and Airbnb Eslint
Expand Down
4 changes: 2 additions & 2 deletions src/_components/Cards/Image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ function ImageComponent({ src, alt }: { src: string; alt: string }) {
onClick={handleClickOpen}
>
<NextImage
sizes="100vw"
sizes='100vw'
height={imageSize.height}
width={imageSize.width}
src={src}
Expand All @@ -143,7 +143,7 @@ function ImageComponent({ src, alt }: { src: string; alt: string }) {
</Box>
<Dialog open={open} onClose={handleClose} fullScreen>
<DialogActions>
<IconButton color="primary" onClick={handleClose}>
<IconButton color='primary' onClick={handleClose}>
<CloseIcon />
</IconButton>
</DialogActions>
Expand Down

0 comments on commit ff42de9

Please sign in to comment.