Skip to content

Commit

Permalink
chore: Copy changes and remove timelock field
Browse files Browse the repository at this point in the history
- Update "Gnosis Safe" -> "Safe"
- Remove "Under Audit" message
- Add explaination for burner wallet
- Remove timelock field from the burner wallet flow
  • Loading branch information
wryonik committed Jan 7, 2025
1 parent 70ee1e8 commit dd75a23
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 16 deletions.
24 changes: 12 additions & 12 deletions src/components/FlowsInfoCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,18 +77,18 @@ const FlowInfoCard = ({
</Grid>
<Grid item>
<Box margin="auto">
<Tooltip title="Under Audit" placement="top">
<span>
<Button
variant="outlined"
onClick={handleButtonClick}
disabled={isButtonDisabled ?? false}
style={{ padding: "0.5rem 2rem" }}
>
{buttonText}
</Button>
</span>
</Tooltip>
{/* <Tooltip title="Under Audit" placement="top"> */}
<span>
<Button
variant="outlined"
onClick={handleButtonClick}
disabled={isButtonDisabled ?? false}
style={{ padding: "0.5rem 2rem" }}
>
{buttonText}
</Button>
</span>
{/* </Tooltip> */}
</Box>
</Grid>
</Grid>
Expand Down
6 changes: 3 additions & 3 deletions src/components/burnerWallet/GuardianSetup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const GuardianSetup = () => {
const [loading, setLoading] = useState(false);

// 0 = 2 week default delay, don't do for demo
const [recoveryDelay, setRecoveryDelay] = useState(1);
const [recoveryDelay, setRecoveryDelay] = useState(0);

Check failure on line 66 in src/components/burnerWallet/GuardianSetup.tsx

View workflow job for this annotation

GitHub Actions / eslint

'recoveryDelay' is assigned a value but never used

Check failure on line 66 in src/components/burnerWallet/GuardianSetup.tsx

View workflow job for this annotation

GitHub Actions / eslint

'setRecoveryDelay' is assigned a value but never used

Check failure on line 66 in src/components/burnerWallet/GuardianSetup.tsx

View workflow job for this annotation

GitHub Actions / eslint

'recoveryDelay' is assigned a value but never used

Check failure on line 66 in src/components/burnerWallet/GuardianSetup.tsx

View workflow job for this annotation

GitHub Actions / eslint

'setRecoveryDelay' is assigned a value but never used
const [isWalletPresent, setIsWalletPresent] = useState(false);
const [emailError, setEmailError] = useState(false);
const [recoveryDelayUnit, setRecoveryDelayUnit] = useState(

Check failure on line 69 in src/components/burnerWallet/GuardianSetup.tsx

View workflow job for this annotation

GitHub Actions / eslint

'recoveryDelayUnit' is assigned a value but never used

Check failure on line 69 in src/components/burnerWallet/GuardianSetup.tsx

View workflow job for this annotation

GitHub Actions / eslint

'setRecoveryDelayUnit' is assigned a value but never used

Check failure on line 69 in src/components/burnerWallet/GuardianSetup.tsx

View workflow job for this annotation

GitHub Actions / eslint

'recoveryDelayUnit' is assigned a value but never used

Check failure on line 69 in src/components/burnerWallet/GuardianSetup.tsx

View workflow job for this annotation

GitHub Actions / eslint

'setRecoveryDelayUnit' is assigned a value but never used
Expand Down Expand Up @@ -386,7 +386,7 @@ const GuardianSetup = () => {
/>
</Grid>
</Grid>
<Grid
{/* <Grid
item
container
direction={"row"}
Expand Down Expand Up @@ -440,7 +440,7 @@ const GuardianSetup = () => {
})}
</Select>
</Grid>
</Grid>
</Grid> */}
</Grid>

{/* <InputField
Expand Down
4 changes: 3 additions & 1 deletion src/pages/landingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ const LandingPage = () => {
buttonText={"Burner Safe Flow (v1.4.1)"}
handleButtonClick={() => handleClick("BURNER_WALLET")}
title={"Test Wallet"}
description={"Connect to see the test wallet flow"}
description={
"A burner wallet is a temporary crypto wallet for quick, low-value transactions, ideal for short-term use, events, or testing, with minimal security."
}
infoIconTitle={"Test Wallet Recovery Setup"}
infoIconDescription={
"Test out our setup and recovery flow with a test wallet."
Expand Down

0 comments on commit dd75a23

Please sign in to comment.