Skip to content

Commit

Permalink
refactor(webapp): fix format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Torresmorah committed Jan 11, 2023
1 parent 8511ddc commit dc93b40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webapp/src/components/InformationCard/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default (theme) => ({
textTransform: 'lowercase',
},
'& .MuiCardHeader-root': {
padding: theme.spacing(2,4,0),
padding: theme.spacing(2, 4, 0),
},
[theme.breakpoints.up('sm')]: {
width: 300,
Expand Down
2 changes: 1 addition & 1 deletion webapp/src/hooks/customHooks/useEndpointsState.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const useEndpointsState = () => {
if (!data.producers?.[0]?.updated_at) return

setUpdatedAt(data.producers[0].updated_at)
},[data])
}, [data])

const handleFilter = useCallback(value => {
const filter = value
Expand Down

0 comments on commit dc93b40

Please sign in to comment.