Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
wadabee committed Oct 24, 2023
1 parent fad2526 commit 480b5a9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion packages/web/src/components/GenerateImageAssistant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const GenerateImageAssistant: React.FC<Props> = (props) => {
if (state !== null) {
setContent(state.content);
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [state]);

const contents = useMemo<
Expand Down
1 change: 0 additions & 1 deletion packages/web/src/components/SketchPad.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ type SketchButtonProps = BaseProps & {
const SketchButton: React.FC<SketchButtonProps> = (props) => {
return (
<div
// eslint-disable-next-line tailwindcss/no-custom-classname
className={`${
props.className ?? ''
} flex h-6 w-6 cursor-pointer items-center justify-center border ${
Expand Down

0 comments on commit 480b5a9

Please sign in to comment.