Skip to content

Commit

Permalink
chore: remove unnecessary fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
1emu committed Apr 18, 2024
1 parent ede6e31 commit 37934cf
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'semantic-ui-css/semantic.min.css'
import React from 'react'
import ReactDOM from 'react-dom'
import { IntlProvider } from 'react-intl'
import { Outlet, RouterProvider, createBrowserRouter } from 'react-router-dom'
import { createBrowserRouter, Outlet, RouterProvider } from 'react-router-dom'

import { QueryClient } from '@tanstack/query-core'
import { QueryClientProvider } from '@tanstack/react-query'
Expand Down Expand Up @@ -98,14 +98,12 @@ const component = (

function LayoutShell() {
return (
<>
<IntlProvider defaultLocale="en" locale="en" messages={flattenMessages(en)}>
<SnapshotStatus />
<Layout>
<Outlet />
</Layout>
</IntlProvider>
</>
)
}

Expand Down

0 comments on commit 37934cf

Please sign in to comment.