Skip to content

Commit

Permalink
chore(webapp): format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Torresmorah committed Jul 29, 2024
1 parent d6bbc47 commit 844ebd8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webapp/src/hooks/customHooks/useBlockProducerState.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { eosConfig } from '../../config'

import useSearchState from './useBPSearchState'

const isFIO = eosConfig.networkName.replace('-testnet','') === 'fio'
const isFIO = eosConfig.networkName.replace('-testnet', '') === 'fio'
const minimumRewards = isFIO ? 1 : 100
const CHIPS_FILTERS = [
{ where: { owner: { _like: '%%' }, bp_json: { _is_null: false } } },
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/hooks/customHooks/useNonCompliantState.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const useNonCompliantState = () => {
const [loadSettings, { data: { setting } = {} }] = useLazyQuery(SETTING_QUERY)
const [items, setItems] = useState([])
const [stats, setStats] = useState()
const isFIO = eosConfig.networkName.replace('-testnet','') === 'fio'
const isFIO = eosConfig.networkName.replace('-testnet', '') === 'fio'
const minimumRewards = isFIO ? 1 : 100

useEffect(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const useRewardsDistributionState = () => {
useLazyQuery(PRODUCERS_QUERY)
const [summary, setSummary] = useState()
const [items, setItems] = useState([])
const isFIO = eosConfig.networkName.replace('-testnet','') === 'fio'
const isFIO = eosConfig.networkName.replace('-testnet', '') === 'fio'
const minimumRewards = isFIO ? 1 : 100

useEffect(() => {
Expand Down

0 comments on commit 844ebd8

Please sign in to comment.