diff --git a/src/components/NostrActivity.tsx b/src/components/NostrActivity.tsx
index 58d3488..ffff7d5 100644
--- a/src/components/NostrActivity.tsx
+++ b/src/components/NostrActivity.tsx
@@ -6,10 +6,9 @@ import {
Show,
Switch
} from "solid-js";
-import { Dynamic } from "solid-js/web";
import rightArrow from "~/assets/icons/right-arrow.svg";
-import { AmountSats, TinyText, VStack } from "~/components";
+import { AmountSats, VStack } from "~/components";
import { useI18n } from "~/i18n/context";
import { useMegaStore } from "~/state/megaStore";
import { fetchZaps, getHexpubFromNpub } from "~/utils";
@@ -154,36 +153,10 @@ export function NostrActivity() {
-
-
- {zap.content?.includes("From:")
- ? `${i18n.t(
- "activity.from"
- )} ${zap.content?.split("nostr:")[1]}`
- : zap.content}
-
-
+
)}
diff --git a/src/components/TagEditor.tsx b/src/components/TagEditor.tsx
index 09372e5..bd6d525 100644
--- a/src/components/TagEditor.tsx
+++ b/src/components/TagEditor.tsx
@@ -2,9 +2,8 @@ import { createOptions, Select } from "@thisbeyond/solid-select";
import "~/styles/solid-select.css";
-import { createMemo, createSignal, For, onMount, Show } from "solid-js";
+import { createMemo, createSignal, onMount } from "solid-js";
-import { TinyButton } from "~/components";
import { useMegaStore } from "~/state/megaStore";
import { MutinyTagItem, sortByLastUsed } from "~/utils";
@@ -65,12 +64,8 @@ export function TagEditor(props: {
}
};
- const onTagTap = (tag: MutinyTagItem) => {
- props.setSelectedValues([...props.selectedValues!, tag]);
- };
-
return (
-
+ <>
-
- 0}>
-
- {(tag) => (
- onTagTap(tag)}
- >
- {tag.name}
-
- )}
-
-
-
-
+ >
);
}
diff --git a/src/components/layout/Misc.tsx b/src/components/layout/Misc.tsx
index 2b9b670..366ae52 100644
--- a/src/components/layout/Misc.tsx
+++ b/src/components/layout/Misc.tsx
@@ -258,7 +258,6 @@ export const TinyText: ParentComponent = (props) => {
export const TinyButton: ParentComponent<{
onClick: () => void;
tag?: MutinyTagItem;
- hidden?: boolean;
}> = (props) => {
// TODO: don't need to run this if it's not a contact
const [gradient] = createResource(async () => {
@@ -273,7 +272,6 @@ export const TinyButton: ParentComponent<{
return (