From cb41be81158b0a12c2282925d740e90681a41bdd Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Fri, 21 Jun 2024 22:20:38 +0530 Subject: [PATCH] chore: lint --- src/context/socket.tsx | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/context/socket.tsx b/src/context/socket.tsx index 93432014..678f5520 100644 --- a/src/context/socket.tsx +++ b/src/context/socket.tsx @@ -9,7 +9,7 @@ interface SocketState { setId: (id: string) => void; }; -class SocketStore implements Partial{ +class SocketStore implements Partial { socket = null; id = ''; }; @@ -38,15 +38,15 @@ export const SocketProvider = ({ children }: { children: JSX.Element }) => { setActiveId(id); }, [setSocket]); - return ( - - {children} - - ); + return ( + + {children} + + ); };