Skip to content

Commit

Permalink
feat(core): export revamp coimponents properly, fix MnemonicVideoPopu…
Browse files Browse the repository at this point in the history
…pContent component
  • Loading branch information
szymonmaslowski committed Feb 27, 2024
1 parent be4f5c7 commit 7601001
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export * from '@ui/components/InfoWallet';
export * from '@ui/components/OutputSummary';
export * from '@ui/components/OutputSummaryList';
export * from '@ui/components/WalletSetup';
export * from 'ui/components/WalletSetupRevamp';
export * from '@ui/components/WalletSetupRevamp';
export * from '@ui/components/ConnectedDapp';
export * from '@ui/components/SendReceive';
export * from '@ui/components/DappInfo';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Button } from '@lace/ui';
import { TranslationsFor } from '@ui/utils/types';
import { urls } from '@ui/utils/constants';
import React, { ReactNode, useRef, useState } from 'react';
import React, { ReactElement, useRef, useState } from 'react';
import styles from './MnemonicVideoPopupContent.module.scss';

type MnemonicVideoPopupContentProps = {
Expand All @@ -16,7 +16,7 @@ export const MnemonicVideoPopupContent = ({
onClose,
translations,
videoSrc
}: MnemonicVideoPopupContentProps): ReactNode => {
}: MnemonicVideoPopupContentProps): ReactElement => {
const [overlayVisible, setOverlayVisible] = useState(true);
const videoRef = useRef<HTMLIFrameElement>();

Expand Down

0 comments on commit 7601001

Please sign in to comment.