File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import IconButton from './material/IconButton'
99import StatisticBar from './StatisticBar'
1010import Button from '~/components/material/Button'
1111import { createStore , reconcile } from 'solid-js/store'
12- import clsx from 'clsx'
1312
1413interface DecoratedUploadQueueItem extends UploadQueueItem {
1514 route : string
@@ -57,7 +56,7 @@ const UploadQueueRow: VoidComponent<{ cancel: (id: string) => void; item: Decora
5756
5857const StatusMessage : VoidComponent < { iconClass ?: string ; icon : IconName ; message : string } > = ( props ) => (
5958 < div class = "flex items-center gap-2" >
60- < Icon name = { props . icon } class = { clsx ( props . iconClass ) } />
59+ < Icon name = { props . icon } class = { props . iconClass } />
6160 < div > { props . message } </ div >
6261 </ div >
6362)
You can’t perform that action at this time.
0 commit comments