Skip to content

Commit

Permalink
Fix type issues
Browse files Browse the repository at this point in the history
  • Loading branch information
balagurova committed Jul 11, 2024
1 parent 7372d2f commit a1ffd15
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 98 deletions.
1 change: 1 addition & 0 deletions src/Components/Constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Leaf, School, BriefcaseBusiness, Flag, Shell } from 'lucide-react';
export interface Programme {
[x: number]: any;
label: string;
short: string;
value: string;
color: string;
icon: any;
Expand Down
97 changes: 0 additions & 97 deletions src/Components/Table.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/Types.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export interface ChoroplethMapDataType {
private?: any;
frameworks?: any;
biofin?: any;
[key: string]: any; // To allow for any additional fields
[key: string]: any;
};
}

Expand Down

0 comments on commit a1ffd15

Please sign in to comment.