diff --git a/client/src/pages/flami/SharePage.tsx b/client/src/pages/flami/SharePage.tsx index 1c61e15..7335843 100644 --- a/client/src/pages/flami/SharePage.tsx +++ b/client/src/pages/flami/SharePage.tsx @@ -8,7 +8,7 @@ import { useNavigate } from "react-router"; import { Button } from "../../components/ui"; import { useGeolocated } from "react-geolocated"; import { useTheme } from "../../hooks/useTheme"; -import MyFlamiDisplay from "../../components/flami/MyFlamiDisplay"; +import MyFlamiDisplay from "../../components/flami/myFlamiDisplay"; const SharePage = () => { const { token } = useAuth(); @@ -44,7 +44,12 @@ const SharePage = () => {
- { flami ? : null } + {flami ? ( + + ) : null}
{flami?.kept_flami ? ( @@ -71,7 +76,7 @@ const SharePage = () => { size={400} style={{ height: "auto", maxWidth: "100%", width: "100%" }} value={JSON.stringify({ - expires: new Date().getTime() + (60 * 1000 * 10), + expires: new Date().getTime() + 60 * 1000 * 10, id: flami?.my_flami.owner, location: { latitude: coords?.latitude || null,