From 04ea68d94e90137d11b038df1988707e54e2b080 Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Wed, 23 Mar 2022 14:44:54 +0700 Subject: [PATCH] fixed lint errors --- next.config.js | 1 - src/components/node/NodeRelatedBlock/index.tsx | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.js b/next.config.js index 60e5867a..21793361 100644 --- a/next.config.js +++ b/next.config.js @@ -2,7 +2,6 @@ const withBundleAnalyzer = require('@next/bundle-analyzer')({ enabled: process.env.ANALYZE === 'true', }); - const withTM = require('next-transpile-modules')(['ramda']); module.exports = withBundleAnalyzer( diff --git a/src/components/node/NodeRelatedBlock/index.tsx b/src/components/node/NodeRelatedBlock/index.tsx index 8556a607..b9653b5c 100644 --- a/src/components/node/NodeRelatedBlock/index.tsx +++ b/src/components/node/NodeRelatedBlock/index.tsx @@ -1,4 +1,5 @@ import React, { FC } from 'react'; + import { Pressable } from '~/components/common/Pressable'; import { NodeRelated } from '~/components/node/NodeRelated'; import { NodeRelatedPlaceholder } from '~/components/node/NodeRelated/placeholder';