Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
waterim committed Mar 4, 2024
1 parent 8b52882 commit 8454e0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/workspace/tags/WorkspaceTagsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ function WorkspaceTagsPage({policyTags, route}: WorkspaceTagsPageProps) {
const tagList = useMemo<PolicyForList[]>(
() =>
policyTagLists
.map((tagList) =>
Object.values(tagList.tags).map((value) => ({
.map((policyTagList) =>
Object.values(policyTagList.tags).map((value) => ({
value: value.name,
text: value.name,
keyForList: value.name,
Expand Down

0 comments on commit 8454e0f

Please sign in to comment.