From 4429643d23fabbfc052d9b0837268b14529f814d Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Thu, 10 Nov 2022 13:13:11 +0400 Subject: [PATCH] Remove spacing from next-tick file --- components/global-header.tsx | 3 +-- .../104-nodejs-async-programming/108-process-next-tick.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/components/global-header.tsx b/components/global-header.tsx index fdb4cb2b3..546625676 100644 --- a/components/global-header.tsx +++ b/components/global-header.tsx @@ -1,8 +1,7 @@ import { useState } from 'react'; import { HamburgerIcon } from '@chakra-ui/icons'; -import { Box, CloseButton, Container, Flex, IconButton, Image, Link, Stack, Text } from '@chakra-ui/react'; +import { Box, CloseButton, Container, Flex, IconButton, Link, Stack, Text } from '@chakra-ui/react'; import RoadmapLogo from '../components/icons/roadmap.svg'; -import siteConfig from '../content/site.json'; type MenuLinkProps = { text: string; diff --git a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/108-process-next-tick.md b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/108-process-next-tick.md index 57b4e5b89..559eb6196 100644 --- a/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/108-process-next-tick.md +++ b/content/roadmaps/107-nodejs/content/104-nodejs-async-programming/108-process-next-tick.md @@ -6,4 +6,4 @@ Every time the event loop takes a full trip, we call it a tick. When we pass a f Understanding Process.NextTick() The Node.js process.nextTick() -The process.nextTick Function +The process.nextTick Function