Skip to content

Commit 6fe3e2b

Browse files
committed
removed redundant messages
1 parent a9bba04 commit 6fe3e2b

1 file changed

Lines changed: 0 additions & 22 deletions

File tree

src/components/onboarding/FlowMessages.tsx

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,6 @@ interface FlowMessagesProps {
1313
}
1414

1515
export function FlowMessages({ status, hasSimulationGrant, useEmbeddedWallet }: FlowMessagesProps) {
16-
// Show message during simulation - different text based on whether grant was given
17-
if (status === 'simulating' && !useEmbeddedWallet) {
18-
return (
19-
<Box
20-
sx={{
21-
mt: 3,
22-
p: 2,
23-
backgroundColor: 'rgba(212, 255, 40, 0.05)',
24-
border: '1px solid',
25-
borderColor: 'rgba(212, 255, 40, 0.2)',
26-
borderRadius: 1,
27-
}}
28-
>
29-
<Typography variant="body2" color="text.secondary">
30-
{useEmbeddedWallet || hasSimulationGrant
31-
? 'Fetching your token balances...'
32-
: 'Please approve the batched queries in your wallet. This is a one-time setup that enables seamless interactions going forward.'}
33-
</Typography>
34-
</Box>
35-
);
36-
}
37-
3816
// Show info message during drip registration (when balance is 0)
3917
if (status === 'registering_drip') {
4018
return (

0 commit comments

Comments
 (0)