Run prettier

This commit is contained in:
Austin Chen 2021-12-09 15:23:21 -08:00
parent 44f661a94e
commit 992c245837
4 changed files with 20 additions and 19 deletions

View File

@ -1,10 +1,7 @@
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'plugin:react-hooks/recommended',
'plugin:@next/next/recommended',
],
extends: ['plugin:react-hooks/recommended', 'plugin:@next/next/recommended'],
rules: {
// Add or disable rules here.
}
},
}

3
web/.prettierignore Normal file
View File

@ -0,0 +1,3 @@
# Ignore Next artifacts
.next/
out/

View File

@ -2,11 +2,12 @@ import { useEffect, useState } from 'react'
import { Contract, listenForContract } from '../lib/firebase/contracts'
export const useContract = (contractId: string) => {
const [contract, setContract] = useState<Contract | null | 'loading'>('loading')
const [contract, setContract] = useState<Contract | null | 'loading'>(
'loading'
)
useEffect(() => {
if (contractId)
return listenForContract(contractId, setContract)
if (contractId) return listenForContract(contractId, setContract)
}, [contractId])
return contract