Skip to content

Commit

Permalink
feat(refactor): App Navigator
Browse files Browse the repository at this point in the history
  • Loading branch information
pkim-gswell committed Dec 27, 2023
1 parent a26142e commit af21751
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/services/ui/src/pages/detail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,15 @@ const PackageActionsCard = ({ id }: { id: string }) => {
</em>
) : (
<ul>
{data.actions.map((action, idx) => {
{data.actions.map((type, idx) => {
return (
<Link
key={`${idx}-${action}`}
key={`${idx}-${type}`}
path="/action/:id/:type"
params={{ id, action }}
params={{ id, type }}
className="text-sky-500 underline"
>
<li>{mapActionLabel(action)}</li>
<li>{mapActionLabel(type)}</li>
</Link>
);
})}
Expand Down

0 comments on commit af21751

Please sign in to comment.