diff --git a/src/components/Activity.tsx b/src/components/Activity.tsx index e567efb..670e655 100644 --- a/src/components/Activity.tsx +++ b/src/components/Activity.tsx @@ -45,7 +45,6 @@ const SubtleText: ParentComponent = (props) => { } function OnChainItem(props: { item: OnChainTx, labels: MutinyTagItem[] }) { - const [store, actions] = useMegaStore(); const isReceive = () => props.item.received > props.item.sent const [open, setOpen] = createSignal(false) @@ -61,7 +60,8 @@ function OnChainItem(props: { item: OnChainTx, labels: MutinyTagItem[] }) { setOpen(!open())} @@ -71,7 +71,6 @@ function OnChainItem(props: { item: OnChainTx, labels: MutinyTagItem[] }) { } function InvoiceItem(props: { item: MutinyInvoice, labels: MutinyTagItem[] }) { - const [store, actions] = useMegaStore(); const isSend = createMemo(() => props.item.is_send); const [open, setOpen] = createSignal(false)