Skip to content

Commit

Permalink
chore: fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
lordrip committed Nov 17, 2023
1 parent ef0b5b1 commit dd2c91b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/ui/src/utils/node-icon-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import process from '../assets/eip/process.png';
import recipient_list from '../assets/eip/recipient-list.png';
import remove_header from '../assets/eip/removeheader.png';
import remove_headers from '../assets/eip/removeheaders.png';
import remove_property from '../assets/eip/removeproperty.png';
import remove_properties from '../assets/eip/removeproperties.png';
import remove_property from '../assets/eip/removeproperty.png';
import resequence from '../assets/eip/resequence.png';
import rollback from '../assets/eip/rollback.png';
import sample from '../assets/eip/sample.png';
Expand Down Expand Up @@ -689,7 +689,7 @@ function getEIPIcon(elementName?: string): string | undefined {
case 'transform':
return transform;
case 'unmarshal':
return transform;
return transform;
case 'validate':
return validate;
case 'weighted':
Expand All @@ -698,7 +698,7 @@ function getEIPIcon(elementName?: string): string | undefined {
return when;
case 'wireTap':
return wiretap;
default:
default:
return undefined;
}
}

0 comments on commit dd2c91b

Please sign in to comment.