Fix double arrow (#18916)

## Before

<img width="1004" height="612" alt="image"
src="https://github.com/user-attachments/assets/f0f832eb-d909-449f-88c1-1d30d2ec2c53"
/>


## after

<img width="971" height="555" alt="image"
src="https://github.com/user-attachments/assets/dc751866-85e8-4a3c-8100-2cf109969970"
/>
This commit is contained in:
martmull
2026-03-24 15:33:37 +01:00
committed by GitHub
parent 4c6e102493
commit 2317a701bd
@@ -124,13 +124,7 @@ export const SettingsApplicationsDeveloperTab = () => {
const badgeConfig = SOURCE_TYPE_BADGE_CONFIG[item.sourceType];
return (
<StyledRowRightContainer>
<Tag text={badgeConfig.label} color={badgeConfig.color} preventShrink />
<IconChevronRight
size={theme.icon.size.md}
stroke={theme.icon.stroke.sm}
/>
</StyledRowRightContainer>
<Tag text={badgeConfig.label} color={badgeConfig.color} preventShrink />
);
};