Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unexisting PARAMETERS element type #678

Merged
merged 2 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/utils/mapper/getFileIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export function getFileIcon(type: ElementType, style: SxProps<Theme>) {
return <NoteAltIcon sx={style} />;
case ElementType.FILTER:
return <ArticleIcon sx={style} />;
case ElementType.PARAMETERS:
case ElementType.VOLTAGE_INIT_PARAMETERS:
case ElementType.SECURITY_ANALYSIS_PARAMETERS:
case ElementType.LOADFLOW_PARAMETERS:
Expand Down
1 change: 0 additions & 1 deletion src/utils/types/elementType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export enum ElementType {
CASE = 'CASE',
FILTER = 'FILTER',
MODIFICATION = 'MODIFICATION',
PARAMETERS = 'PARAMETERS',
CONTINGENCY_LIST = 'CONTINGENCY_LIST',
VOLTAGE_INIT_PARAMETERS = 'VOLTAGE_INIT_PARAMETERS',
SECURITY_ANALYSIS_PARAMETERS = 'SECURITY_ANALYSIS_PARAMETERS',
Expand Down
Loading