Skip to content

Commit

Permalink
Fix an error of nested <div> in <p>
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Sep 17, 2024
1 parent fd55e21 commit 3c5eb76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dapp/src/components/AcrePointsClaimModal/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { ReactNode, useEffect, useMemo, useState } from "react"
import { useAcrePoints, useModal, useTimeout } from "#/hooks"
import { Box, Button, ModalBody, Text, VStack } from "@chakra-ui/react"
import { Box, Button, ModalBody, VStack } from "@chakra-ui/react"
import {
AnimationSequence,
motion,
Expand Down Expand Up @@ -163,7 +163,7 @@ export function AcrePointsClaimModalBase() {
{currentStepLabel}
</TextXl>

<Text
<Box
data-step-value
transformOrigin="bottom"
fontSize="8xl"
Expand All @@ -172,7 +172,7 @@ export function AcrePointsClaimModalBase() {
color="grey.700"
>
{currentStepValue}
</Text>
</Box>
</Box>
))}
</VStack>
Expand Down

0 comments on commit 3c5eb76

Please sign in to comment.