diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx index 328c30f5..955efdaf 100644 --- a/frontend/src/pages/Home.tsx +++ b/frontend/src/pages/Home.tsx @@ -12,6 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. +import { Alert } from "@vector-im/compound-web"; import { useAtomValue } from "jotai"; import { currentUserIdAtom } from "../atoms"; @@ -35,7 +36,7 @@ const Home: React.FC = () => { ); } else { - return
You're not logged in.
; + return ; } };