import type { FunctionalComponent } from "preact"; import type { ClassicTestResult } from "types"; import { TestResultRetriesItem } from "@/components/TestResult/TestResultRetriesView/TestResultRetriesItem"; import { useI18n } from "@/stores"; import * as styles from "@/components/TestResult/TestResultHistory/styles.scss"; export const TestResultRetriesView: FunctionalComponent<{ testResult: ClassicTestResult }> = ({ testResult }) => { const { retries } = testResult ?? {}; const { t } = useI18n("empty"); return (
{retries.length ? ( retries?.map((item, key) => ( )) ) : (
{t("no-retries-results")}
)}
); };