diff --git a/client/src/components/FoodSeeker/SearchResults/StakeholderPreview/StakeholderPreview.jsx b/client/src/components/FoodSeeker/SearchResults/StakeholderPreview/StakeholderPreview.jsx
index 01af4436..2ec11838 100644
--- a/client/src/components/FoodSeeker/SearchResults/StakeholderPreview/StakeholderPreview.jsx
+++ b/client/src/components/FoodSeeker/SearchResults/StakeholderPreview/StakeholderPreview.jsx
@@ -3,8 +3,9 @@ import {
Button,
Chip,
Divider,
+ Link,
Stack,
- Typography
+ Typography,
} from "@mui/material";
import Grid2 from "@mui/material/Unstable_Grid2";
import {
@@ -47,7 +48,7 @@ import {
useSearchCoordinates,
useUserCoordinates,
} from "../../../../appReducer";
-import { success } from "../../../../theme/palette";
+import { linkText, success } from "../../../../theme/palette";
const isLastOccurrenceInMonth = (tenantTimeZone) => {
const currentDate = new Date();
@@ -198,12 +199,13 @@ const StakeholderPreview = ({ stakeholder, onSelect, isDesktop }) => {
component="h2"
align="left"
fontWeight="bold"
- sx={{
- textDecoration: "underline",
- }}
- onClick={() => handleSelectOrganization(stakeholder)}
>
- {stakeholder.name}
+ handleSelectOrganization(stakeholder)}
+ >
+ {stakeholder.name}
+
{
{
""
)}
-
+
+ handleSelectOrganization(stakeholder)}
+ sx={{
+ color: linkText,
+ cursor: "pointer",
+ border: "none",
+ }}
+ >
+ more info...
+
+