Skip to content

Commit cc891d4

Browse files
author
Mauve Signweaver
committed
chore: make linter happy
1 parent e123edb commit cc891d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ let DEFAULT_BACKGROUND = 'var(--ag-color-black)'
3030
let DEFAULT_TEXT = 'var(--ag-color-white)'
3131
let 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)'

app/protocols/web3-protocol.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)