Skip to content

Commit

Permalink
Explicit type variable
Browse files Browse the repository at this point in the history
  • Loading branch information
andyyu824 committed Jan 6, 2025
1 parent 07c7d69 commit fb41ce5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/app/Apps/_components/AppsTable/AppsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const AppListingTable: React.FC<AppListingTableProps> = React.memo(

const appList: Array<Apps.TapisApp> = data?.result ?? [];

const excludeList = [];
const excludeList: string[] = [""];

const filteredAppList = appList.filter((app) => {
if (!app || !app.id) return false;
Expand All @@ -58,6 +58,9 @@ export const AppListingTable: React.FC<AppListingTableProps> = React.memo(
"16S-v0.0.2-pipeline-uhhpc",
"16Sv1-pipeline-uhhpc",
"ampliseq-ITS-pipeline-uhhpc",
"ampliseq-16S-pipeline-uhhpc",
"ampliseq-condensed-pipeline-test",
"ampliseq-pipeline-test",
];

const sortedAppList = filteredAppList.sort((a, b) => {
Expand Down

0 comments on commit fb41ce5

Please sign in to comment.