• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

input-output-hk / lace / 7826747364

08 Feb 2024 08:22AM UTC coverage: 53.785%. Remained the same
7826747364

push

github

web-flow
test(extension): updates for tests related to LW-9531 (#879)

1902 of 4443 branches covered (0.0%)

Branch coverage included in aggregate %.

4485 of 7432 relevant lines covered (60.35%)

53.3 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/apps/browser-extension-wallet/src/components/DataCheckContainer/CorruptedData.tsx
1
import React from 'react';
×
2
import { useTranslation } from 'react-i18next';
×
3
import { AppMode } from '@src/utils/constants';
4
import { ResetDataError } from '@components/ResetDataError';
×
5

6
export interface CorruptedDataProps {
7
  appMode: AppMode;
8
}
9

10
export const CorruptedData = ({ appMode }: CorruptedDataProps): React.ReactElement => {
×
11
  const { t } = useTranslation();
×
12

13
  return (
×
14
    <ResetDataError
15
      appMode={appMode}
16
      description={
17
        <>
18
          <div>{t('corruptedData.errorDescription')}</div>
19
          <div>
20
            <b>{t('corruptedData.actionDescription')}</b>
21
          </div>
22
        </>
23
      }
24
      title={<div>{t('corruptedData.title')}</div>}
25
      buttonLabel={t('corruptedData.btn.confirm')}
26
    />
27
  );
28
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc