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 = { module.exports = {
parser: '@typescript-eslint/parser', parser: '@typescript-eslint/parser',
extends: [ extends: ['plugin:react-hooks/recommended', 'plugin:@next/next/recommended'],
'plugin:react-hooks/recommended',
'plugin:@next/next/recommended',
],
rules: { rules: {
// Add or disable rules here. // Add or disable rules here.
} },
} }

3
web/.prettierignore Normal file
View File

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

View File

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

View File

@ -2,11 +2,11 @@ import { useEffect, useState } from 'react'
import { listenForLogin, User } from '../lib/firebase/users' import { listenForLogin, User } from '../lib/firebase/users'
export const useUser = () => { export const useUser = () => {
const [user, setUser] = useState<User | null>(null) const [user, setUser] = useState<User | null>(null)
useEffect(() => { useEffect(() => {
return listenForLogin(setUser) return listenForLogin(setUser)
}, []) }, [])
return user return user
} }