From f8ba69e355ea606525aaf8603673695f66c2ea97 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 13 Jan 2022 16:27:35 -0700 Subject: [PATCH] Fix icon causing issues --- web/src/icons/StarRecording.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/icons/StarRecording.jsx b/web/src/icons/StarRecording.jsx index 8bd741344..eebf8e4aa 100644 --- a/web/src/icons/StarRecording.jsx +++ b/web/src/icons/StarRecording.jsx @@ -1,10 +1,10 @@ import { h } from 'preact'; import { memo } from 'preact/compat'; -export function ArrowDropdown({ className = '' }) { +export function StarRecording({ className = '' }) { return ( - + ); }