Skip to content

Commit

Permalink
style: replace blank with React.Fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
soy0ka committed Jun 15, 2024
1 parent 6ec3c59 commit 7df9c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/layouts/dex/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ export const DexLayout: React.FC = wrapError(() => {
<MainSidebar />
<Box sx={{ marginLeft: isMobile ? 0 : '280px', height: '100%' }}>
{isMobile && (
<>
<React.Fragment>
<Toolbar />
<Divider />
</>
</React.Fragment>
)}
<Outlet />
</Box>
Expand Down

0 comments on commit 7df9c25

Please sign in to comment.