Skip to content

Commit

Permalink
fix(Process): 🐞 Typo error in service process link
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoval committed Jan 17, 2024
1 parent aa350e5 commit 0f53172
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Processes/components/Details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const Details: FC<DetailsProps> = function ({ process, title }) {
{addresses.map((service) => (
<div key={service}>
<ResourceIcon type="service" />
<Link to={`${ServicesRoutesPaths.Services}/${service}}`}>{service.split('@')[0]}</Link>
<Link to={`${ServicesRoutesPaths.Services}/${service}`}>{service.split('@')[0]}</Link>
</div>
))}
</Flex>
Expand Down

0 comments on commit 0f53172

Please sign in to comment.