chore: fix linter

This commit is contained in:
Steven 2024-04-12 08:36:02 +08:00
parent 257b8add8c
commit 133951328b
3 changed files with 2 additions and 42 deletions

View file

@ -12,7 +12,7 @@ import (
"github.com/usememos/memos/store"
)
func (s *APIV2Service) ListWorkspaceSettings(ctx context.Context, request *apiv2pb.ListWorkspaceSettingsRequest) (*apiv2pb.ListWorkspaceSettingsResponse, error) {
func (s *APIV2Service) ListWorkspaceSettings(ctx context.Context, _ *apiv2pb.ListWorkspaceSettingsRequest) (*apiv2pb.ListWorkspaceSettingsResponse, error) {
workspaceSettings, err := s.Store.ListWorkspaceSettingsV1(ctx, &store.FindWorkspaceSetting{})
if err != nil {
return nil, status.Errorf(codes.Internal, "failed to get workspace setting: %v", err)

View file

@ -1,38 +0,0 @@
import { useEffect, useState } from "react";
import { tagServiceClient } from "@/grpcweb";
import { Tag } from "@/types/proto/api/v2/tag_service";
import Icon from "../Icon";
const TagsSection = () => {
const [tags, setTags] = useState<Tag[]>([]);
useEffect(() => {
(async () => {
const { tags } = await tagServiceClient.listTags({});
setTags(tags);
})();
}, []);
return (
tags.length > 0 && (
<div className="w-full mt-2 flex flex-col p-2 bg-gray-50 dark:bg-black rounded-lg">
<div className="w-full flex flex-row justify-between items-center">
<span className="text-gray-400 font-medium text-sm pl-1">Tags</span>
</div>
<div className="w-full flex flex-row justify-start items-center flex-wrap">
{tags.map((tag) => (
<div
key={tag.name}
className="w-auto max-w-full px-1 flex flex-row justify-start items-center text-gray-500 hover:bg-gray-100 dark:hover:bg-zinc-900 rounded-lg"
>
<Icon.Hash className="w-4 h-auto opacity-80" />
{tag.name}
</div>
))}
</div>
</div>
)
);
};
export default TagsSection;

View file

@ -92,9 +92,7 @@ const TagsSection = () => {
) : (
<div className="p-2 border rounded-md flex flex-row justify-start items-start gap-1 text-gray-400 dark:text-gray-500">
<Icon.ThumbsUp />
<p className="mt-0.5 text-sm leading-snug italic">
{t("tag.create-tags-guide")}
</p>
<p className="mt-0.5 text-sm leading-snug italic">{t("tag.create-tags-guide")}</p>
</div>
)}
</div>