From 63c2c815b3d276b0be02779c33be6ac6146f3791 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 14 Jun 2024 23:08:31 +0530 Subject: [PATCH] chore: lint --- src/components/molecules/UrlForm.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/molecules/UrlForm.tsx b/src/components/molecules/UrlForm.tsx index 77e1139a..a6681ab9 100644 --- a/src/components/molecules/UrlForm.tsx +++ b/src/components/molecules/UrlForm.tsx @@ -1,11 +1,11 @@ -import {useState, useCallback, useEffect,} from 'react'; +import { useState, useCallback, useEffect, } from 'react'; import type { SyntheticEvent, } from 'react'; import KeyboardArrowRightIcon from '@mui/icons-material/KeyboardArrowRight'; import { NavBarForm, NavBarInput } from "../atoms/form"; import { UrlFormButton } from "../atoms/buttons/buttons"; import { useSocketStore } from '../../context/socket'; -import {Socket} from "socket.io-client"; +import { Socket } from "socket.io-client"; type Props = { currentAddress: string; @@ -66,7 +66,7 @@ export const UrlForm = ({ onChange={onChange} /> - + );