File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 22 "name" : " rainbowkit-next-starter" ,
33 "version" : " 0.1.0" ,
44 "private" : true ,
5+ "type" : " module" ,
56 "scripts" : {
67 "start" : " next dev" ,
78 "build" : " next build" ,
Original file line number Diff line number Diff line change 11import '../styles/globals.css' ;
22import dynamic from 'next/dynamic' ;
3+ import DynamicWagmi from '../src/components/dynamicWagmi' ;
34
4- const DynamicWagmi = dynamic ( ( ) => import ( '../src/components/dynamicWagmi/index' ) , {
5- ssr : false ,
6- } ) ;
5+ // const DynamicWagmi = dynamic(() => import('../src/components/dynamicWagmi/index'), {
6+ // ssr: false,
7+ // });
78
89function MyApp ( { Component, pageProps } ) {
910 return (
Original file line number Diff line number Diff line change @@ -140,7 +140,6 @@ function DemoSetting(props: any) {
140140 modalBorderRadius : Number ( modalBorderRadius ) ,
141141 } ) ;
142142 localStorage . setItem ( 'dapp_particle_modal_border_radius' , modalBorderRadius + '' ) ;
143- console . log ( 'change modal border radius' ) ;
144143 } , [ modalBorderRadius ] ) ;
145144 return (
146145 < div className = "filter-box card" style = { { flex : 1 } } >
Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ function PnSelect(props: PnSelectProps) {
2626 const item = props . options . find ( ( item ) => item . value === value ) ;
2727 return item ;
2828 } , [ value ] ) ;
29- console . log ( props ) ;
3029
3130 useEffect ( ( ) => {
3231 if ( props ?. value ) {
You can’t perform that action at this time.
0 commit comments