From 8fe80629500ee4897862b1e13917ad3fe6f7d95a Mon Sep 17 00:00:00 2001 From: AAGaming Date: Mon, 25 Sep 2023 13:23:38 -0400 Subject: move type checking to other workflow, fix TS errors, add TSC checking --- frontend/src/components/modals/filepicker/index.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'frontend/src/components/modals/filepicker/index.tsx') diff --git a/frontend/src/components/modals/filepicker/index.tsx b/frontend/src/components/modals/filepicker/index.tsx index ae745c9c..c4e72d95 100644 --- a/frontend/src/components/modals/filepicker/index.tsx +++ b/frontend/src/components/modals/filepicker/index.tsx @@ -13,7 +13,7 @@ import { } from 'decky-frontend-lib'; import { filesize } from 'filesize'; import { FunctionComponent, useCallback, useEffect, useMemo, useState } from 'react'; -import { FileIcon, defaultStyles } from 'react-file-icon'; +import { DefaultExtensionType, FileIcon, defaultStyles } from 'react-file-icon'; import { useTranslation } from 'react-i18next'; import { FaArrowUp, FaFolder } from 'react-icons/fa'; @@ -316,7 +316,12 @@ const FilePicker: FunctionComponent = ({ ) : (
{file.realpath.includes('.') ? ( - + ) : ( )} -- cgit v1.2.3