Added association tracking
This commit is contained in:
@@ -2,6 +2,7 @@ import React from "react";
|
||||
import { useTranslation } from "react-i18next";
|
||||
import AlertComponent from "../alert/alert.component";
|
||||
import ProfileMyComponent from "../profile-my/profile-my.component";
|
||||
import ProfileShopsContainer from "../profile-shops/profile-shops.container";
|
||||
|
||||
export default function ProfileContent({ sidebarSelection }) {
|
||||
const { t } = useTranslation();
|
||||
@@ -10,7 +11,7 @@ export default function ProfileContent({ sidebarSelection }) {
|
||||
case "profile":
|
||||
return <ProfileMyComponent />;
|
||||
case "shops":
|
||||
return <div>Shop stuff</div>;
|
||||
return <ProfileShopsContainer />;
|
||||
default:
|
||||
return (
|
||||
<AlertComponent message={t("profile.errors.state")} type="error" />
|
||||
|
||||
Reference in New Issue
Block a user