feat: only show edit button when logged in
This commit is contained in:
@ -5,9 +5,12 @@ export const HashTags = ({ tags }: { tags: string[] }) => {
|
||||
>
|
||||
{tags.map((t) => {
|
||||
return (
|
||||
<span class="bg-gray-700 text-white p-2 rounded-xl text-sm">
|
||||
<a
|
||||
class="bg-gray-700 text-white p-2 rounded-xl text-sm"
|
||||
href={`/?q=%23${t}`}
|
||||
>
|
||||
#{t}
|
||||
</span>
|
||||
</a>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user