Skip to content

Commit

Permalink
chore: run lint:fix command
Browse files Browse the repository at this point in the history
  • Loading branch information
Onizuka-wl committed Oct 1, 2024
1 parent 288335d commit 082aad0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { createPublicClient, http } from 'viem';
import { mainnet } from 'viem/chains';
import { Config } from '~/types';
import { getConstants } from './constants';
import { getEnv } from './env';
import { Config } from '~/types';

// this provider if for load data when the user is disconnected
export const publicClient = createPublicClient({
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AppProps } from 'next/app';
import Layout from './layout';
import { Providers } from '~/providers';
import Layout from './layout';

const Home = ({ Component, pageProps }: AppProps) => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DocumentContext, DocumentProps, Head, Html, Main, NextScript } from 'next/document';
import { DocumentHeadTags, documentGetInitialProps } from '@mui/material-nextjs/v13-pagesRouter';
import type { DocumentHeadTagsProps } from '@mui/material-nextjs/v13-pagesRouter';
import { DocumentContext, DocumentProps, Head, Html, Main, NextScript } from 'next/document';

export default function MyDocument(props: DocumentProps & DocumentHeadTagsProps) {
const descriptionText = 'Web3 Boilerplate by Wonderland.';
Expand Down

0 comments on commit 082aad0

Please sign in to comment.