Skip to content

Commit

Permalink
Merge pull request #1364 from nervosnetwork/testnet
Browse files Browse the repository at this point in the history
Merge testnet into mainnet
  • Loading branch information
Keith-CY authored Oct 27, 2023
2 parents 80724d5 + 0d1f727 commit e2f2388
Show file tree
Hide file tree
Showing 122 changed files with 2,128 additions and 2,819 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ module.exports = {
allow: ['^.*_'],
},
],
'@typescript-eslint/array-type': 'error',
},
env: {
jest: true,
Expand Down
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useMemo } from 'react'
import { QueryClient, QueryClientProvider } from 'react-query'
import { ThemeProvider } from 'styled-components'
import { DefaultTheme, ThemeProvider } from 'styled-components'
import Routers from './routes'
import Toast from './components/Toast'
import useInitApp from './contexts/providers/hook'
Expand All @@ -18,7 +18,7 @@ const queryClient = new QueryClient()

const App = () => {
useInitApp()
const theme = useMemo(
const theme = useMemo<DefaultTheme>(
() => ({
primary: getPrimaryColor(),
secondary: getSecondaryColor(),
Expand Down
149 changes: 0 additions & 149 deletions src/__mocks__/block.ts

This file was deleted.

Loading

0 comments on commit e2f2388

Please sign in to comment.