Skip to content

Commit f579c6f

Browse files
committed
fix type
1 parent 92cdd9a commit f579c6f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

apps/site/components/Downloads/DownloadReleasesTable/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
import Badge from '@node-core/ui-components/Common/Badge';
44
import { useTranslations } from 'next-intl';
5-
import { useState, type FC } from 'react';
5+
import { useState } from 'react';
6+
import type { FC } from 'react';
67

78
import FormattedTime from '#site/components/Common/FormattedTime';
89
import LinkWithArrow from '#site/components/LinkWithArrow';

apps/site/components/EOL/EOLReleaseTable/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
'use client';
22

33
import { useTranslations } from 'next-intl';
4-
import { useState, type FC } from 'react';
4+
import { useState } from 'react';
5+
import type { FC } from 'react';
56

67
import FormattedTime from '#site/components/Common/FormattedTime';
78
import VulnerabilityChips from '#site/components/EOL/VulnerabilityChips';

0 commit comments

Comments
 (0)