From c695cdcf1b33b0f59bc287b3433df94bcba7669f Mon Sep 17 00:00:00 2001 From: Paul Miller Date: Fri, 12 May 2023 10:45:38 -0500 Subject: [PATCH] gotta do math because bitcion --- src/components/Activity.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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)