Skip to content

Commit

Permalink
feat: add back grill
Browse files Browse the repository at this point in the history
  • Loading branch information
teodorus-nathaniel committed Jan 16, 2024
1 parent 86080a1 commit a55770c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/layout/ClientLayout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import dynamic from 'next/dynamic'
import React from 'react'
import { NotifCounterProvider } from 'src/components/activity/NotifCounter'
import { LazyConnectionsProvider } from 'src/components/lazy-connection/LazyConnectionContext'
Expand All @@ -10,9 +11,9 @@ import { SubstrateProvider, SubstrateWebConsole } from '../components/substrate'
import SidebarCollapsedProvider from '../components/utils/SideBarCollapsedContext'
import { Navigation } from './Navigation'

// const ChatFloatingModal = dynamic(() => import('../components/chat/ChatFloatingModal'), {
// ssr: false,
// })
const ChatFloatingModal = dynamic(() => import('../components/chat/ChatFloatingModal'), {
ssr: false,
})

const ClientLayout: React.FunctionComponent = ({ children }) => {
return (
Expand All @@ -26,7 +27,7 @@ const ClientLayout: React.FunctionComponent = ({ children }) => {
<AuthProvider>
<NotifCounterProvider>
<Navigation>{children}</Navigation>
{/* <ChatFloatingModal /> */}
<ChatFloatingModal />
</NotifCounterProvider>
</AuthProvider>
</MyAccountsProvider>
Expand Down

0 comments on commit a55770c

Please sign in to comment.