From 1290948aa72f8a5dd2f93a6aa3030cf0dbf95e33 Mon Sep 17 00:00:00 2001 From: thecodrr Date: Thu, 23 Apr 2020 14:13:22 +0500 Subject: [PATCH] fix: resolve all warnings --- apps/web/src/components/editor/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/src/components/editor/index.js b/apps/web/src/components/editor/index.js index bad41338c..10683224c 100644 --- a/apps/web/src/components/editor/index.js +++ b/apps/web/src/components/editor/index.js @@ -1,7 +1,7 @@ import React, { useEffect, useRef } from "react"; import "./editor.css"; import ReactQuill from "./react-quill"; -import { Flex, Box } from "rebass"; +import { Flex } from "rebass"; import Properties from "../properties"; import { useStore, SESSION_STATES } from "../../stores/editor-store"; import { useStore as useAppStore } from "../../stores/app-store"; @@ -10,7 +10,6 @@ import EditorMenu from "./editormenu"; import Header from "./header"; function Editor() { - const id = useStore((store) => store.session.id); const delta = useStore((store) => store.session.content.delta); const sessionState = useStore((store) => store.session.state); const setSession = useStore((store) => store.setSession);