diff --git a/client/.eslintrc.json b/client/.eslintrc.json
index c685e93e..bffb357a 100644
--- a/client/.eslintrc.json
+++ b/client/.eslintrc.json
@@ -1,8 +1,3 @@
{
- "extends": "next/core-web-vitals",
- "settings": {
- "next": {
- "rootDir": "client/"
- }
- }
+ "extends": "next/core-web-vitals"
}
diff --git a/client/app/(auth)/components/index.tsx b/client/app/(auth)/components/index.tsx
index 1110a99c..0aab279f 100644
--- a/client/app/(auth)/components/index.tsx
+++ b/client/app/(auth)/components/index.tsx
@@ -70,7 +70,7 @@ const Auth = ({
onClick={(e) => {
e.preventDefault()
signIn("github", {
- callbackUrl: "/",
+ callbackUrl: "/"
})
}}
>
diff --git a/client/app/(auth)/signin/page.tsx b/client/app/(auth)/signin/page.tsx
index a8ac70fc..b18f16b8 100644
--- a/client/app/(auth)/signin/page.tsx
+++ b/client/app/(auth)/signin/page.tsx
@@ -1,5 +1,5 @@
import Auth from "../components"
export default function SignInPage() {
- return (
Drag some files here, or {verb} to select files
++ Drag some files here, or {verb} to select files +
)} {isDragActive &&Release to drop the files here
} diff --git a/client/app/(posts)/new/components/edit-document-list/edit-document/formatting-icons/index.tsx b/client/app/(posts)/new/components/edit-document-list/edit-document/formatting-icons/index.tsx index 02ec4cb8..381a8f6d 100644 --- a/client/app/(posts)/new/components/edit-document-list/edit-document/formatting-icons/index.tsx +++ b/client/app/(posts)/new/components/edit-document-list/edit-document/formatting-icons/index.tsx @@ -14,7 +14,7 @@ import ButtonGroup from "@components/button-group" // TODO: clean up const FormattingIcons = ({ - textareaRef, + textareaRef }: { textareaRef?: RefObject