We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 788b589 commit 4f56e18Copy full SHA for 4f56e18
src/components/Header/GasPriceViewer.tsx
@@ -25,7 +25,7 @@ const GasPriceViewer = () => {
25
26
const displayedScrollGasPrice = useMemo(() => {
27
if (scrollGasPrice) {
28
- return Number(formatGwei(scrollGasPrice)).toFixed(3)
+ return Number(formatGwei(scrollGasPrice)).toFixed(5)
29
}
30
return "-"
31
}, [scrollGasPrice])
src/components/Header/MobileGasPriceViewer.tsx
@@ -35,7 +35,7 @@ const MobileGasPriceViewer = props => {
35
36
37
38
- return commafy(formatGwei(scrollGasPrice).toString(), 3)
+ return commafy(formatGwei(scrollGasPrice).toString(), 5)
39
40
41
0 commit comments