From 6d78930b895abe850b8e9eb21a132f117e8a5b2f Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Mon, 1 Dec 2025 19:05:37 +0100 Subject: [PATCH] Add link on unlinked account message --- .../src/widgets/NotLinkedAccountMessage.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/matrixgw_frontend/src/widgets/NotLinkedAccountMessage.tsx b/matrixgw_frontend/src/widgets/NotLinkedAccountMessage.tsx index 65412b3..500476f 100644 --- a/matrixgw_frontend/src/widgets/NotLinkedAccountMessage.tsx +++ b/matrixgw_frontend/src/widgets/NotLinkedAccountMessage.tsx @@ -1,3 +1,7 @@ +import ArrowForwardIcon from "@mui/icons-material/ArrowForward"; +import { Button } from "@mui/material"; +import { Link } from "react-router"; + export function NotLinkedAccountMessage(): React.ReactElement { return (
- Your Matrix account is not linked yet! +
+ Your Matrix account is not linked yet! +
+ + +
); }