Removed currently useless View profile button on Recorder chip

This commit is contained in:
DrMint 2022-05-04 04:11:29 +02:00
parent 379ed4ce20
commit c49094c843
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
import Chip from "components/Chip"; import Chip from "components/Chip";
import { RecorderChipFragment } from "graphql/generated"; import { RecorderChipFragment } from "graphql/generated";
import { AppStaticProps } from "queries/getAppStaticProps"; import { AppStaticProps } from "queries/getAppStaticProps";
import Button from "./Inputs/Button";
import Img, { ImageQuality } from "./Img"; import Img, { ImageQuality } from "./Img";
import Markdawn from "./Markdown/Markdawn";
import ToolTip from "./ToolTip"; import ToolTip from "./ToolTip";
interface Props { interface Props {
@ -50,9 +50,9 @@ export default function RecorderChip(props: Props): JSX.Element {
</div> </div>
</div> </div>
{recorder.bio?.[0] && <p>{recorder.bio[0].bio}</p>} {recorder.bio?.[0] && <Markdawn text={recorder.bio[0].bio ?? ""} />}
<Button className="cursor-not-allowed">View profile</Button> {/* <Button className="cursor-not-allowed">View profile</Button> */}
</div> </div>
} }
placement="top" placement="top"