Skip to content

Commit

Permalink
add link to owner profile from mission details page contributions list
Browse files Browse the repository at this point in the history
  • Loading branch information
datadanne committed Sep 21, 2023
1 parent 81b0c5e commit 93a21d0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion garage/src/pages/Mission/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import { Link } from "react-router-dom";
import {
Box,
Button,
Expand Down Expand Up @@ -136,7 +137,11 @@ const Contributions = ({
: truncateWalletAddress(contribution.contributor);
return (
<Tr key={`contribution-${idx}`}>
<Td pl={p}>{contributor}</Td>
<Td pl={p}>
<Link to={`/owner/${contribution.contributor}`}>
{contributor}
</Link>
</Td>
<Td pr={p}>
{prettySubmissionStatus(contribution.status)}
</Td>
Expand Down

0 comments on commit 93a21d0

Please sign in to comment.