From 405c79ca032589620fafe45fce042c68b428d145 Mon Sep 17 00:00:00 2001 From: Adam DeHaven Date: Mon, 16 Oct 2023 12:40:59 -0400 Subject: [PATCH] chore: remove icon from name in sandbox --- sandbox/components/SandboxIcon.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandbox/components/SandboxIcon.vue b/sandbox/components/SandboxIcon.vue index db1d382c..50371d4c 100644 --- a/sandbox/components/SandboxIcon.vue +++ b/sandbox/components/SandboxIcon.vue @@ -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, ''))