Skip to content

Commit 5d4fe61

Browse files
committed
Minor changes
1 parent d6fa18b commit 5d4fe61

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

components/Content/Content.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default function Content() {
5050
<Typography.Title className="text-shadow">Prize Pot</Typography.Title>
5151
<div className="flex space-x-4 flex-1 items-center">
5252
<span className="text-neon text-8xl">
53-
{toPrice(appState.contractBalance)}
53+
{toPrice(appState.contractBalance, 3)}
5454
</span>
5555
<Image
5656
alt="Ethereum logo"

components/Content/EnterForm.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default function EnterForm({
2929
className="bg-transparent outline-none text-center font-bold text-2xl text-[#001529] flex-1"
3030
value={ether}
3131
onChange={changeEther}
32-
step={0.01}
32+
step={0.001}
3333
/>
3434
<div>
3535
<Image

components/Footer/Footer.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export default function Footer() {
66
Proudly made in 🇪🇸 by{' '}
77
<a
88
href="https://www.linkedin.com/in/jscriptcoder"
9-
target="_blank"
10-
rel="noopener"
9+
target={'_blank'}
10+
rel={'noreferrer'}
1111
>
1212
Francisco Ramos
1313
</a>

0 commit comments

Comments
 (0)