File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ let DEFAULT_BACKGROUND = 'var(--ag-color-black)'
3030let DEFAULT_TEXT = 'var(--ag-color-white)'
3131let DEFAULT_PAGE_THEME = 'var(--ag-color-black)'
3232
33- if ( nativeTheme . shouldUseDarkColors == false ) {
33+ if ( nativeTheme . shouldUseDarkColors === false ) {
3434 DEFAULT_BACKGROUND = 'var(--ag-color-white)'
3535 DEFAULT_TEXT = 'var(--ag-color-black)'
3636 DEFAULT_PAGE_THEME = 'var(--ag-color-white)'
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export default async function createHandler (options) {
66 return fetchToHandler ( async ( ) => {
77 const { chainList, ...opts } = options
88 const web3Client = new Client ( chainList , opts )
9- async function fetch ( { url, method } ) {
9+ async function fetch ( { url, method } ) {
1010 if ( method !== 'GET' ) {
1111 return new Response ( 'Method Not Allowed' , {
1212 status : 405
You can’t perform that action at this time.
0 commit comments