Skip to content

Commit a325988

Browse files
chore(icon): remove additional sort fn
1 parent 6239f66 commit a325988

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/icon/stories/template.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ export const FullIconSetTemplate = (args, context) => {
171171
})}
172172
>
173173
${when(args.setName === "workflow", () => {
174-
return workflowIconsCleaned.sort().map((iconName) => IconWithLabelTemplate({ ...args, iconName }, context));
174+
return workflowIconsCleaned.map((iconName) => IconWithLabelTemplate({ ...args, iconName }, context));
175175
}, () => {
176-
return uiIconsWithDirections.sort().map((iconName) => IconWithLabelTemplate({ ...args, uiIconName: iconName }, context));
176+
return uiIconsWithDirections.map((iconName) => IconWithLabelTemplate({ ...args, uiIconName: iconName }, context));
177177
})}
178178
</div>
179179
`;

0 commit comments

Comments
 (0)