Removed currently useless View profile button on Recorder chip
This commit is contained in:
parent
379ed4ce20
commit
c49094c843
|
@ -1,8 +1,8 @@
|
|||
import Chip from "components/Chip";
|
||||
import { RecorderChipFragment } from "graphql/generated";
|
||||
import { AppStaticProps } from "queries/getAppStaticProps";
|
||||
import Button from "./Inputs/Button";
|
||||
import Img, { ImageQuality } from "./Img";
|
||||
import Markdawn from "./Markdown/Markdawn";
|
||||
import ToolTip from "./ToolTip";
|
||||
|
||||
interface Props {
|
||||
|
@ -50,9 +50,9 @@ export default function RecorderChip(props: Props): JSX.Element {
|
|||
</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>
|
||||
}
|
||||
placement="top"
|
||||
|
|
Loading…
Reference in New Issue