fix: remove follow tag button

This commit is contained in:
2024-07-17 15:53:48 +01:00
parent b0f193651e
commit 52fb0c2862

View File

@ -1,6 +1,4 @@
import { useParams } from "react-router-dom"; import { useParams } from "react-router-dom";
import { unwrap } from "@snort/shared";
import { FollowTagButton } from "@/element/follow-button";
import { useStreamsFeed } from "@/hooks/live-streams"; import { useStreamsFeed } from "@/hooks/live-streams";
import VideoGridSorted from "@/element/video-grid-sorted"; import VideoGridSorted from "@/element/video-grid-sorted";
@ -11,7 +9,6 @@ export function TagPage() {
<div> <div>
<div className="flex items-center justify-between"> <div className="flex items-center justify-between">
<h1>#{tag}</h1> <h1>#{tag}</h1>
<FollowTagButton tag={unwrap(tag)} />
</div> </div>
<VideoGridSorted evs={streams} /> <VideoGridSorted evs={streams} />
</div> </div>