Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewlilley authored and github-actions[bot] committed Aug 13, 2024
1 parent 8de4385 commit 826a972
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
7 changes: 3 additions & 4 deletions apps/web/src/app/(evm)/swap/dca/loading.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React from "react";
import SimpleSwapLoading from "../(simple)/loading";
import React from 'react'
import SimpleSwapLoading from '../(simple)/loading'

export default function Loader() {
return <SimpleSwapLoading />;

return <SimpleSwapLoading />
}
23 changes: 12 additions & 11 deletions apps/web/src/app/(evm)/swap/dca/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,21 @@ import { Container } from '@sushiswap/ui'
import { Providers } from '../(simple)/providers'
import dynamic from 'next/dynamic'

const TWAPPanel = dynamic(
() => import('src/ui/swap/twap/twap').then((it) => it.TWAPPanel),
{ ssr: false },
)

const TWAPPanel = dynamic(() => import('src/ui/swap/twap/twap').then(it => it.TWAPPanel), {ssr: false})

export const metadata = {
title: 'SushiSwap',
}

export default function SwapTwapPage() {
return (
<Providers>
<Container maxWidth="lg" className="px-4">
<TWAPPanel />
</Container>
</Providers>
)
}

return (
<Providers>
<Container maxWidth="lg" className="px-4">
<TWAPPanel />
</Container>
</Providers>
)
}

0 comments on commit 826a972

Please sign in to comment.