diff --git a/src/containers/Editor/components/TextEditor.tsx b/src/containers/Editor/components/TextEditor.tsx
index d4cc32b..a816719 100644
--- a/src/containers/Editor/components/TextEditor.tsx
+++ b/src/containers/Editor/components/TextEditor.tsx
@@ -1,7 +1,7 @@
import React from "react";
import { LoadingOverlay } from "@mantine/core";
import styled from "styled-components";
-import Editor, { loader, useMonaco } from "@monaco-editor/react";
+import Editor, { type EditorProps, loader, useMonaco } from "@monaco-editor/react";
import useConfig from "src/store/useConfig";
import useFile from "src/store/useFile";
@@ -11,12 +11,13 @@ loader.config({
},
});
-const editorOptions = {
+const editorOptions: EditorProps["options"] = {
formatOnPaste: true,
formatOnType: true,
minimap: {
enabled: false,
},
+ scrollBeyondLastLine: false,
};
const TextEditor = () => {
diff --git a/src/containers/Landing/SeePremium.tsx b/src/containers/Landing/SeePremium.tsx
index edb3c73..a0aef8f 100644
--- a/src/containers/Landing/SeePremium.tsx
+++ b/src/containers/Landing/SeePremium.tsx
@@ -64,7 +64,6 @@ export const SeePremium = () => {
mt="xl"
rightSection={}
radius="xl"
- fz="md"
>
See more
diff --git a/src/containers/Modals/ImportModal/index.tsx b/src/containers/Modals/ImportModal/index.tsx
index 8855f28..f0c311d 100644
--- a/src/containers/Modals/ImportModal/index.tsx
+++ b/src/containers/Modals/ImportModal/index.tsx
@@ -1,6 +1,6 @@
import React from "react";
import type { ModalProps } from "@mantine/core";
-import { Modal, Group, Button, TextInput, Stack, Divider, Paper, Text } from "@mantine/core";
+import { Modal, Group, Button, TextInput, Stack, Paper, Text } from "@mantine/core";
import { Dropzone } from "@mantine/dropzone";
import { event as gaEvent } from "nextjs-google-analytics";
import toast from "react-hot-toast";
@@ -93,7 +93,6 @@ export const ImportModal = ({ opened, onClose }: ModalProps) => {
-