Skip to content

Commit

Permalink
chore: remove icon from name in sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven committed Oct 16, 2023
1 parent 7af635e commit 405c79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sandbox/components/SandboxIcon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const props = defineProps({
},
})
const iconName = computed((): string => props.icon?.__name || '')
const iconName = computed((): string => String(props.icon?.__name || '').replace(/icon/i, ''))
</script>

<style lang="scss" scoped>
Expand Down

0 comments on commit 405c79c

Please sign in to comment.