Skip to content

Commit

Permalink
Merge pull request #30 from DLC-link/feat/modified-lock-btc
Browse files Browse the repository at this point in the history
feat: lock btc button in my vaults route takes you back to the dashboard
  • Loading branch information
Polybius93 authored Dec 7, 2023
2 parents 3e98fad + d60b773 commit 75773c7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/app/components/vault/components/vault-information.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { useDispatch } from 'react-redux';
import { useNavigate } from 'react-router-dom';

import { CheckIcon } from '@chakra-ui/icons';
import { Button, HStack, Image, Text, VStack } from '@chakra-ui/react';
Expand Down Expand Up @@ -35,6 +36,8 @@ export function VaultInformation({
handleClick,
}: VaultInformationProps): React.JSX.Element {
const dispatch = useDispatch();
const navigate = useNavigate();

const date = new Date(timestamp * 1000).toLocaleDateString('en-US');

return (
Expand Down Expand Up @@ -63,7 +66,10 @@ export function VaultInformation({
</VStack>
) : state === VaultState.READY && !isSelected ? (
<Button
onClick={() => dispatch(mintUnmintActions.setMintStep([1, uuid]))}
onClick={() => {
navigate('/');
dispatch(mintUnmintActions.setMintStep([1, uuid]));
}}
variant={'vault'}
w={'85px'}
>
Expand Down

0 comments on commit 75773c7

Please sign in to comment.