Skip to content

Commit a05ba86

Browse files
author
Vikhyath Mondreti
committed
fix lint
1 parent 24a3b9a commit a05ba86

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

apps/sim/app/workspace/layout.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use client'
22

3-
import { SocketProvider } from '@/contexts/socket-context'
43
import { useSession } from '@/lib/auth-client'
4+
import { SocketProvider } from '@/contexts/socket-context'
55

66
interface WorkspaceRootLayoutProps {
77
children: React.ReactNode
@@ -18,9 +18,5 @@ export default function WorkspaceRootLayout({ children }: WorkspaceRootLayoutPro
1818
}
1919
: undefined
2020

21-
return (
22-
<SocketProvider user={user}>
23-
{children}
24-
</SocketProvider>
25-
)
21+
return <SocketProvider user={user}>{children}</SocketProvider>
2622
}

0 commit comments

Comments
 (0)