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 2
2
"name" : " rainbowkit-next-starter" ,
3
3
"version" : " 0.1.0" ,
4
4
"private" : true ,
5
+ "type" : " module" ,
5
6
"scripts" : {
6
7
"start" : " next dev" ,
7
8
"build" : " next build" ,
Original file line number Diff line number Diff line change 1
1
import '../styles/globals.css' ;
2
2
import dynamic from 'next/dynamic' ;
3
+ import DynamicWagmi from '../src/components/dynamicWagmi' ;
3
4
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
+ // });
7
8
8
9
function MyApp ( { Component, pageProps } ) {
9
10
return (
Original file line number Diff line number Diff line change @@ -140,7 +140,6 @@ function DemoSetting(props: any) {
140
140
modalBorderRadius : Number ( modalBorderRadius ) ,
141
141
} ) ;
142
142
localStorage . setItem ( 'dapp_particle_modal_border_radius' , modalBorderRadius + '' ) ;
143
- console . log ( 'change modal border radius' ) ;
144
143
} , [ modalBorderRadius ] ) ;
145
144
return (
146
145
< 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) {
26
26
const item = props . options . find ( ( item ) => item . value === value ) ;
27
27
return item ;
28
28
} , [ value ] ) ;
29
- console . log ( props ) ;
30
29
31
30
useEffect ( ( ) => {
32
31
if ( props ?. value ) {
You can’t perform that action at this time.
0 commit comments